Franziska Kunsmann
b06532241b
All checks were successful
bundlewrap/pipeline/head This commit looks good
54 lines
1.3 KiB
Python
54 lines
1.3 KiB
Python
users_from_metadata = set()
|
|
additional_users = node.metadata.get('openssh/allowed_users', set())
|
|
|
|
for user, config in node.metadata.get('users', {}).items():
|
|
if 'ssh_pubkey' in config and not config.get('delete', False):
|
|
users_from_metadata.add(user)
|
|
|
|
login_users = users_from_metadata.union(additional_users)
|
|
|
|
files = {
|
|
'/etc/ssh/sshd_config': {
|
|
'content_type': 'mako',
|
|
'context': {
|
|
'login_users': login_users,
|
|
'admin_users': users_from_metadata,
|
|
},
|
|
'triggers': {
|
|
'action:sshd_check_config',
|
|
},
|
|
},
|
|
'/etc/systemd/system/ssh.service.d/bundlewrap.conf': {
|
|
'source': 'override.conf',
|
|
'triggers': {
|
|
'action:sshd_check_config',
|
|
},
|
|
},
|
|
}
|
|
|
|
if node.has_bundle('pacman'):
|
|
package = 'pkg_pacman:openssh'
|
|
service = 'sshd'
|
|
else:
|
|
package = 'pkg_apt:openssh-server'
|
|
service = 'ssh'
|
|
|
|
actions = {
|
|
'sshd_check_config': {
|
|
'command': 'sshd -T -C user=root -C host=localhost -C addr=localhost',
|
|
'triggered': True,
|
|
'triggers': {
|
|
'svc_systemd:{}:restart'.format(service),
|
|
},
|
|
},
|
|
}
|
|
|
|
svc_systemd = {
|
|
service: {
|
|
'needs': {
|
|
'file:/etc/systemd/system/ssh.service.d/bundlewrap.conf',
|
|
'file:/etc/ssh/sshd_config',
|
|
package,
|
|
},
|
|
},
|
|
}
|