diff --git a/packer.json b/packer.json index 5e2a0cf..b8f100e 100644 --- a/packer.json +++ b/packer.json @@ -12,8 +12,8 @@ "provisioners": [ { "type": "shell", - "script": "./setup.sh" - }, + "command": "apt-get update && apt-get -y install python" + }, { "type": "ansible", "playbook_file": "ansible/playbook.yml", diff --git a/setup.sh b/setup.sh deleted file mode 100644 index 39c1194..0000000 --- a/setup.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -cat /proc/sys/kernel/random/uuid > /.build_uuid -apt-get update -apt-get -y install python