Skip to content

Instantly share code, notes, and snippets.

@anneakin
Created May 23, 2020 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anneakin/992a70fbcd3448b2f11e48df721e7a1b to your computer and use it in GitHub Desktop.
Save anneakin/992a70fbcd3448b2f11e48df721e7a1b to your computer and use it in GitHub Desktop.
Provisioners section of Packer file
"provisioners": [
{
"type": "shell",
"inline": [
"sleep 30",
"sudo yum update -y",
"sudo amazon-linux-extras install epel -y",
"sudo yum install s3fs-fuse -y"
]
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment