bundlewrap/bundles/hostname/items.py
mwiegand 1481a99ae0 wip
2021-07-12 21:00:33 +02:00

11 lines
235 B
Python

files['/etc/hostname'] = {
'content': node.metadata.get('hostname'),
'triggers': [
'action:update_hostname',
],
}
actions["update_hostname"] = {
"command": "hostname -F /etc/hostname",
'triggered': True,
}