avoid redundant rm calls

(cherry picked from commit 1398d0c3128323f02e4e380c64bf817823a278c6)
release-18.03-flake
AmineChikhaoui 2018-06-04 10:23:40 +01:00 committed by Rob Vermaas
parent 91f7231b72
commit cb0eb5b271
No known key found for this signature in database
GPG Key ID: 6B726FB2EE6F4255
1 changed files with 1 additions and 2 deletions

View File

@ -253,12 +253,11 @@ in
mv -f $SSH_HOST_KEYS_DIR/ssh_host_ed25519_key* /etc/ssh/
chmod 600 /etc/ssh/ssh_host_ed25519_key
chmod 644 /etc/ssh/ssh_host_ed25519_key.pub
rm $SSH_HOST_KEYS_DIR/*
else
echo "Setup of ssh host keys from http://metadata.google.internal/computeMetadata/v1/instance/attributes/ failed."
false
fi
rm -r $SSH_HOST_KEYS_DIR
rm -rf $SSH_HOST_KEYS_DIR
'';
serviceConfig.Type = "oneshot";
serviceConfig.RemainAfterExit = true;