Skip to content

Instantly share code, notes, and snippets.

@msnelling
Created December 23, 2019 10:31
Show Gist options
  • Save msnelling/df7c434ce5f258f0010af50c7c5c6b89 to your computer and use it in GitHub Desktop.
Save msnelling/df7c434ce5f258f0010af50c7c5c6b89 to your computer and use it in GitHub Desktop.
Install VMware GuestInfo Cloud-Init Datasource
#!/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