some minor fixes

This commit is contained in:
cronekorkn 2023-10-24 11:17:29 +02:00
parent d302a22d3e
commit 0dabb39ca4
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
3 changed files with 5 additions and 3 deletions

View file

@ -61,8 +61,10 @@ for node in [
*wireguard_servers,
]:
try:
if node.run('test -e /var/run/reboot-required').return_code == 0:
if node.run('test -e /var/run/reboot-required', may_fail=True).return_code == 0:
print('rebooting', node.name)
print(node.run('systemctl reboot').stdout.decode())
else:
print('not rebooting', node.name)
except Exception as e:
print(e)

View file

@ -11,7 +11,7 @@ defaults = {
'php-imagick': {},
'php-pgsql': {},
'icingaweb2': {},
'icingaweb2-module-monitoring': {},
#'icingaweb2-module-monitoring': {}, # ?
},
'sources': {
'icinga': {

View file

@ -4,7 +4,7 @@ from shlex import quote
directories['/var/lib/influxdb'] = {
'owner': 'influxdb',
'group': 'influxdb',
'mode': '0750',
'mode': '0755',
'needs': [
'zfs_dataset:tank/influxdb',
],