19 lines
325 B
Python
19 lines
325 B
Python
|
defaults = {
|
||
|
'apt': {
|
||
|
'packages': {
|
||
|
'mariadb-server': {},
|
||
|
},
|
||
|
},
|
||
|
'backups': {
|
||
|
'paths': {
|
||
|
'/var/lib/mysql',
|
||
|
},
|
||
|
},
|
||
|
'monit': {
|
||
|
'services': {
|
||
|
'mariadb': {
|
||
|
'bin': '/usr/sbin/mariadbd',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|