python3.12 compat
This commit is contained in:
parent
65af9ae0c5
commit
9e78b9e07b
4 changed files with 6 additions and 6 deletions
|
@ -212,8 +212,8 @@ nodes['home.nas'] = {
|
|||
'nas_permissions': {
|
||||
'command': [
|
||||
'chown -R :nas /storage/nas/',
|
||||
'find /storage/nas/ -type d -exec chmod 0775 {} \;',
|
||||
'find /storage/nas/ -type f -exec chmod 0664 {} \;',
|
||||
r'find /storage/nas/ -type d -exec chmod 0775 {} \;',
|
||||
r'find /storage/nas/ -type f -exec chmod 0664 {} \;',
|
||||
],
|
||||
'when': '*-*-* 02:00:00',
|
||||
},
|
||||
|
|
|
@ -45,7 +45,7 @@ nodes['home.router'] = {
|
|||
# connected longer than 24 hours. We install this cronjob
|
||||
# to make sure we don't get disconnected randomly during the
|
||||
# day.
|
||||
'restart_pppd': '23 2 * * * root systemctl restart pppoe && date -u +\%s > /var/tmp/pppd-last-restart.status',
|
||||
'restart_pppd': r'23 2 * * * root systemctl restart pppoe && date -u +\%s > /var/tmp/pppd-last-restart.status',
|
||||
},
|
||||
},
|
||||
'kea-dhcp-server': {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue