Created
January 14, 2015 22:38
-
-
Save inthecloud247/59993d5f94f7534be340 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
supervisor: | |
pkg.latest: | |
- skip_suggestions: True | |
- refresh: False | |
service.running: | |
- enable: True | |
- reload: True | |
- watch: [ file: supervisor ] | |
file.managed: | |
- name: /etc/supervisord.conf | |
- mode: 644 | |
- contents: | | |
[supervisord] | |
nodaemon=false | |
logfile=/var/log/supervisor/supervisord.log | |
pidfile=/var/run/supervisord.pid | |
childlogdir=/var/log/supervisor | |
[include] | |
files = /etc/supervisor/conf.d/*.conf | |
[rpcinterface:supervisor] | |
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface | |
[supervisorctl] | |
serverurl=unix:///var/run//supervisor.sock | |
file: | |
- directory | |
- user: root | |
- group: root | |
- mode: 755 | |
- makedirs: True | |
- names: | |
- /etc/supervisor/conf.d | |
- /var/log/supervisor |
Author
inthecloud247
commented
Jan 14, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment