bundlewrap/bundles/octoprint/items.py
Franzi d1672a9a45
All checks were successful
bundlewrap/pipeline/head This commit looks good
bundles/octoprint: restart octoprint after changing unit file
2020-09-22 18:11:42 +02:00

36 lines
976 B
Python

actions = {
'octoprint_create_virtualenv': {
'command': 'sudo -u octoprint /usr/bin/python3 -m virtualenv -p python3 /opt/octoprint/venv/',
'unless': 'test -d /opt/octoprint/venv/',
'needs': {
'directory:/opt/octoprint', # provided by bundle:users
'user:octoprint',
},
},
'octoprint_install_octoprint': {
'command': 'sudo -u octoprint /opt/octoprint/venv/bin/pip install OctoPrint',
'unless': 'test -f /opt/octoprint/venv/bin/octoprint',
'needs': {
'action:octoprint_create_virtualenv',
},
},
}
svc_systemd = {
'octoprint': {
'needs': {
'file:/etc/systemd/system/octoprint.service',
'action:octoprint_install_octoprint',
},
},
}
files = {
'/etc/systemd/system/octoprint.service': {
'triggers': {
'action:systemd-reload',
'svc_systemd:octoprint:restart',
},
},
}