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
2490e862
Commit
2490e862
authored
Oct 19, 2012
by
Cédric de Saint Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add supervisord/supervisorctl entry points
parent
dd6f87a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
3 deletions
+20
-3
documentation/slapos.usage.rst
documentation/slapos.usage.rst
+16
-3
slapos/entry.py
slapos/entry.py
+4
-0
No files found.
documentation/slapos.usage.rst
View file @
2490e862
...
@@ -240,12 +240,12 @@ Return values:
...
@@ -240,12 +240,12 @@ Return values:
1 At least one instance hasn't correctly been processed.
1 At least one instance hasn't correctly been processed.
slapos node <start|stop|tail|status>
slapos node <start|stop|
restart|
tail|status>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Usage:
Usage:
slapos node <start|stop|tail|status> <instance>:[process]
slapos node <start|stop|
restart|
tail|status> <instance>:[process]
Start/Stop/Show stdout/stderr of instance and/or process.
Start/Stop/
Restart/
Show stdout/stderr of instance and/or process.
Examples:
Examples:
...
@@ -258,6 +258,19 @@ Examples:
...
@@ -258,6 +258,19 @@ Examples:
* Show stdout/stderr of mysqld in slappart2:
* Show stdout/stderr of mysqld in slappart2:
slapos node tail slappart2:mysqld
slapos node tail slappart2:mysqld
slapos node supervisorctl
~~~~~~~~~~~~~~~~~~~~~~~~~
Usage:
slapos node supervisorctl
Enter into supervisor console.
slapos node supervisord
~~~~~~~~~~~~~~~~~~~~~~~
Usage:
slapos node supervisord
Launch, if not already launched, supervisor daemon.
slapos node log
slapos node log
~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~
...
...
slapos/entry.py
View file @
2490e862
...
@@ -126,6 +126,10 @@ def dispatch(command, is_node_command):
...
@@ -126,6 +126,10 @@ def dispatch(command, is_node_command):
call
(
bang
,
config
=
True
)
call
(
bang
,
config
=
True
)
elif
command
==
'format'
:
elif
command
==
'format'
:
call
(
format
,
config
=
GLOBAL_SLAPOS_CONFIGURATION
,
option
=
[
'-c'
])
call
(
format
,
config
=
GLOBAL_SLAPOS_CONFIGURATION
,
option
=
[
'-c'
])
elif
command
==
'supervisord'
:
call
(
supervisord
,
config
=
GLOBAL_SLAPOS_CONFIGURATION
)
elif
command
==
'supervisorctl'
:
call
(
supervisorctl
,
config
=
GLOBAL_SLAPOS_CONFIGURATION
)
elif
command
in
[
'start'
,
'stop'
,
'restart'
,
'status'
,
'tail'
]:
elif
command
in
[
'start'
,
'stop'
,
'restart'
,
'status'
,
'tail'
]:
# Again, too hackish
# Again, too hackish
sys
.
argv
[
-
2
:
-
2
]
=
[
command
]
sys
.
argv
[
-
2
:
-
2
]
=
[
command
]
...
...
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