avoid redundant rm calls

This commit is contained in:
AmineChikhaoui 2018-06-04 10:23:40 +01:00
parent 95c05343ce
commit 1398d0c312
No known key found for this signature in database
GPG key ID: C0C8C84C15BCCD1C

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;