You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,12 +16,13 @@ Install your app using defined type supervisor::app
16
16
17
17
```puppet
18
18
supervisor::app { 'your-app-title':
19
-
app_name => 'your-app-name' # Default to 'your-app-title'
19
+
app_name => 'your-app-name' # Defaults to 'your-app-title',
20
20
command => 'The command that will be run this app', # required
21
-
directory => 'Path where your command will be run' # required
22
-
user => 'User to execute this app' # Default to ubuntu
23
-
startsecs => 'The total number of seconds which the program needs to stay running after a startup to consider the start successful' # Default to undef
24
-
stopwaitsecs => 'The number of seconds to wait for the OS to return a SIGCHILD to supervisord after the program has been sent a stopsignal', # Default to undef
25
-
priority => 'The relative priority of the program in the start and shutdown ordering' # Default to undef
21
+
directory => 'Path where your command will be run', # required
22
+
user => 'User to execute this app', # Defaults to root
23
+
environment => 'Hash map of environment variables to be used by your program', # Defaults to undef
24
+
startsecs => 'The total number of seconds which the program needs to stay running after a startup to consider the start successful', # Defaults to undef
25
+
stopwaitsecs => 'The number of seconds to wait for the OS to return a SIGCHILD to supervisord after the program has been sent a stopsignal', # Defaults to undef
26
+
priority => 'The relative priority of the program in the start and shutdown ordering', # Defaults to undef
0 commit comments