Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
slapos.core
Commits
521e7c91
Commit
521e7c91
authored
Apr 25, 2013
by
Marco Mariani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed useless comments
parent
09748757
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
11 deletions
+2
-11
slapos/cli/TODO
slapos/cli/TODO
+0
-7
slapos/grid/utils.py
slapos/grid/utils.py
+2
-4
No files found.
slapos/cli/TODO
View file @
521e7c91
...
...
@@ -2,10 +2,6 @@
for slapgrid:
refactor loggers -- maybe reduce their number?
pay attention to mandatory parameters and related dependencies
drop run(*argument_tuple) ?
except Exeption -> StandardError
* enable --debug by default
...
...
@@ -14,9 +10,6 @@ for slapgrid:
instance
software
report
slapos start (NotImplementedError)
slapos stop (NotImplementedError)
slapos destroy (NotImplementedError)
issues:
slapformat --log_file vs cliff --log-file
...
...
slapos/grid/utils.py
View file @
521e7c91
...
...
@@ -141,18 +141,16 @@ def setRunning(pid_file):
"""Creates a pidfile. If a pidfile already exists, we exit"""
logger
=
logging
.
getLogger
(
'Slapgrid'
)
if
os
.
path
.
exists
(
pid_file
):
# Pid file is present
try
:
pid
=
int
(
open
(
pid_file
,
'r'
).
readline
())
except
ValueError
:
pid
=
None
# XXX This could use psutil library.
if
pid
is
not
None
and
os
.
path
.
exists
(
"/proc/%s"
%
pid
):
# In case process is present, ignore.
if
pid
and
os
.
path
.
exists
(
"/proc/%s"
%
pid
):
logger
.
info
(
'New slapos process started, but another slapos '
'process is aleady running with pid %s, exiting.'
%
pid
)
sys
.
exit
(
10
)
logger
.
info
(
'Existing pid file %r was stale
one
, overwritten'
%
pid_file
)
logger
.
info
(
'Existing pid file %r was stale, overwritten'
%
pid_file
)
# Start new process
write_pid
(
pid_file
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment