Created
May 11, 2015 13:46
-
-
Save stefanandres/b138921d6785951dcd77 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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