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