19 lines
445 B
Python
19 lines
445 B
Python
|
@metadata_processor
|
||
|
def defaults(metadata):
|
||
|
return {
|
||
|
'apt': {
|
||
|
'packages': {
|
||
|
'mariadb-server': {},
|
||
|
'python3': {},
|
||
|
'python3-setuptools': {},
|
||
|
'python3-pip': {},
|
||
|
},
|
||
|
},
|
||
|
'users': {
|
||
|
'seafile': {
|
||
|
'home': '/opt/seafile',
|
||
|
'deploy_configs': False,
|
||
|
},
|
||
|
},
|
||
|
}, DEFAULTS, DONE
|