bundlewrap/bundles/gce-workaround/items.py

34 lines
772 B
Python
Raw Normal View History

svc_systemd = {}
2020-08-30 08:44:13 +00:00
pkg_apt = {}
for i in {
'gce-disk-expand',
2020-08-30 08:44:13 +00:00
'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,
}
2020-08-21 12:41:01 +00:00
for i in {
'google-accounts-daemon.service',
'google-accounts-manager.service',
'google-clock-skew-daemon.service',
'google-clock-sync-manager.service',
2020-08-21 12:41:01 +00:00
'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,
}