Created
December 23, 2019 10:31
-
-
Save msnelling/df7c434ce5f258f0010af50c7c5c6b89 to your computer and use it in GitHub Desktop.
Install VMware GuestInfo Cloud-Init Datasource
This file contains 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
#!/bin/bash | |
sudo apt update | |
sudo apt dist-upgrade -y | |
sudo apt install -y cloud-init python3-pip | |
sudo curl -sSL https://raw.githubusercontent.com/vmware/cloud-init-vmware-guestinfo/master/install.sh | sh - | |
sudo apt remove --purge -y python3-pip build-essential binutils | |
sudo apt autoremove --purge -y | |
sudo apt clean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment