some minor fixes
This commit is contained in:
parent
d302a22d3e
commit
0dabb39ca4
3 changed files with 5 additions and 3 deletions
|
@ -61,8 +61,10 @@ for node in [
|
||||||
*wireguard_servers,
|
*wireguard_servers,
|
||||||
]:
|
]:
|
||||||
try:
|
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('rebooting', node.name)
|
||||||
print(node.run('systemctl reboot').stdout.decode())
|
print(node.run('systemctl reboot').stdout.decode())
|
||||||
|
else:
|
||||||
|
print('not rebooting', node.name)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(e)
|
print(e)
|
||||||
|
|
|
@ -11,7 +11,7 @@ defaults = {
|
||||||
'php-imagick': {},
|
'php-imagick': {},
|
||||||
'php-pgsql': {},
|
'php-pgsql': {},
|
||||||
'icingaweb2': {},
|
'icingaweb2': {},
|
||||||
'icingaweb2-module-monitoring': {},
|
#'icingaweb2-module-monitoring': {}, # ?
|
||||||
},
|
},
|
||||||
'sources': {
|
'sources': {
|
||||||
'icinga': {
|
'icinga': {
|
||||||
|
|
|
@ -4,7 +4,7 @@ from shlex import quote
|
||||||
directories['/var/lib/influxdb'] = {
|
directories['/var/lib/influxdb'] = {
|
||||||
'owner': 'influxdb',
|
'owner': 'influxdb',
|
||||||
'group': 'influxdb',
|
'group': 'influxdb',
|
||||||
'mode': '0750',
|
'mode': '0755',
|
||||||
'needs': [
|
'needs': [
|
||||||
'zfs_dataset:tank/influxdb',
|
'zfs_dataset:tank/influxdb',
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue