Skip to content

Commit 7424d14

Browse files
committed
Updating readme
1 parent 982fa7d commit 7424d14

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@ Install your app using defined type supervisor::app
1616

1717
```puppet
1818
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',
2020
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
2627
}
2728
```

0 commit comments

Comments
 (0)