19 lines
482 B
Python
19 lines
482 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,
|
|
'home-mode': '0755',
|
|
},
|
|
},
|
|
}, DEFAULTS, DONE
|