"provisioners": [
    {
    "type": "file",
    "source": "index.html",
    "destination": "/tmp/index.html"
    },
    {
    "type": "shell",
    "inline": [
        "sudo mkdir /var/www/myhomepage",
        "sudo mv /tmp/index.html /var/www/myhomepage"
    ]
    },
