From f1d6cd9d9ee445b4ba05270f11b1d015c91726ca Mon Sep 17 00:00:00 2001 From: Zach Marano Date: Mon, 18 Apr 2016 13:31:37 -0700 Subject: [PATCH] Disable SSH root login on GCE images. --- bootstrapvz/providers/gce/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrapvz/providers/gce/__init__.py b/bootstrapvz/providers/gce/__init__.py index 895a33d..1a7ece6 100644 --- a/bootstrapvz/providers/gce/__init__.py +++ b/bootstrapvz/providers/gce/__init__.py @@ -46,6 +46,7 @@ def resolve_tasks(taskset, manifest): boot.UpdateInitramfs, ssh.AddSSHKeyGeneration, ssh.DisableSSHPasswordAuthentication, + ssh.DisableRootLogin, tasks.apt.CleanGoogleRepositoriesAndKeys, image.MoveImage,