11 lines
252 B
Python
11 lines
252 B
Python
@metadata_processor
|
|
def root_user(metadata):
|
|
return {
|
|
'users': {
|
|
'root': {
|
|
'home': '/root',
|
|
'ssh_pubkey': [],
|
|
'shell': '/bin/bash',
|
|
},
|
|
},
|
|
}, DEFAULTS, DONE
|