Skip to content

Instantly share code, notes, and snippets.

@stefanandres
Created May 11, 2015 13:46
Show Gist options
  • Select an option

  • Save stefanandres/b138921d6785951dcd77 to your computer and use it in GitHub Desktop.

Select an option

Save stefanandres/b138921d6785951dcd77 to your computer and use it in GitHub Desktop.
cat >/etc/init/delete-cloud-init.conf <<EOF
description "delete-cloud-init"
task
# make sure cloud-init finished before deleting it
start on (stopped cloud-config
and stopped cloud-final)
script
apt-get -y purge cloud-init
rm /etc/init/delete-cloud-init.conf
end script
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment