Franziska Kunsmann
58d99eb402
All checks were successful
bundlewrap/pipeline/head This commit looks good
30 lines
690 B
Python
30 lines
690 B
Python
defaults = {
|
|
'apt': {
|
|
'packages': {
|
|
'dphys-swapfile': {
|
|
'installed': False,
|
|
},
|
|
},
|
|
},
|
|
'raspberrypi': {
|
|
'default-target': 'multi-user.target',
|
|
'cmdline': {
|
|
'console=tty1',
|
|
'root=/dev/mmcblk0p2',
|
|
'rootfstype=ext4',
|
|
'elevator=deadline',
|
|
'fsck.repair=yes',
|
|
'rootwait',
|
|
'quiet',
|
|
'plymouth.ignore-serial-consoles',
|
|
'net.ifnames=0',
|
|
},
|
|
},
|
|
'systemd': {
|
|
'journal': {
|
|
'storage': 'volatile',
|
|
'maxuse': '100M',
|
|
'keepfree': '100M',
|
|
},
|
|
},
|
|
}
|