diff --git a/bundles/gce-workaround/items.py b/bundles/gce-workaround/items.py new file mode 100644 index 0000000..529b696 --- /dev/null +++ b/bundles/gce-workaround/items.py @@ -0,0 +1,13 @@ +svc_systemd = {} + +for i in ( + 'google-accounts-daemon.service', + 'google-accounts-manager.service', + 'google-clock-skew-daemon.service', + 'google-clock-sync-manager.service', + 'sshguard.service' +): + svc_systemd[i] = { + 'enabled': False, + 'running': False, + } diff --git a/groups/locations.py b/groups/locations.py index 8b2bdef..aa08d6d 100644 --- a/groups/locations.py +++ b/groups/locations.py @@ -14,6 +14,9 @@ groups['htz-cloud'] = { } groups['gce'] = { + 'bundles': { + 'gce-workaround', + }, 'member_patterns': { r"gce\..*", },