bundlewrap/bundles/ssh/items.py
2021-10-31 17:50:21 +01:00

14 lines
296 B
Python

if not node.in_group('raspberry-pi'):
# FIXME
files['/etc/ssh/sshd_config'] = {
'triggers': [
'svc_systemd:ssh:restart'
],
}
svc_systemd['ssh'] = {
'running': not node.in_group('raspberry-pi'), # FIXME
'needs': [
'tag:ssh_users',
],
}