Franziska Kunsmann
a58c5877bf
All checks were successful
bundlewrap/pipeline/head This commit looks good
33 lines
772 B
Python
33 lines
772 B
Python
svc_systemd = {}
|
|
pkg_apt = {}
|
|
|
|
for i in {
|
|
'gce-disk-expand',
|
|
'google-cloud-packages-archive-keyring',
|
|
'google-cloud-sdk',
|
|
'google-compute-engine',
|
|
'google-compute-engine-oslogin',
|
|
'google-guest-agent',
|
|
'google-osconfig-agent',
|
|
}:
|
|
pkg_apt[i] = {
|
|
'installed': False,
|
|
}
|
|
|
|
for i in {
|
|
'google-accounts-daemon.service',
|
|
'google-accounts-manager.service',
|
|
'google-clock-skew-daemon.service',
|
|
'google-clock-sync-manager.service',
|
|
'google-guest-agent.service',
|
|
'google-osconfig-agent.service',
|
|
'google-shutdown-scripts.service',
|
|
'google-startup-scripts.service',
|
|
'sshguard.service',
|
|
|
|
'google-oslogin-cache.timer',
|
|
}:
|
|
svc_systemd[i] = {
|
|
'enabled': False,
|
|
'running': False,
|
|
}
|