summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Rebischke <chris@nullday.de>2019-09-10 19:38:37 +0200
committerChristian Rebischke <chris@nullday.de>2019-09-10 19:38:37 +0200
commit704a42f2f66481fea83cfd69d37c345babaf5471 (patch)
tree18c60b6fb0d3266ecfa5d8514d7e1161755d3bbc
parent13f768ce0eb7067833700cb3612974052857c002 (diff)
fixed missing hyphen
Signed-off-by: Christian Rebischke <chris@nullday.de>
-rw-r--r--controller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller.py b/controller.py
index 24cdee1..c61e146 100644
--- a/controller.py
+++ b/controller.py
@@ -20,7 +20,7 @@ ISO_PATH = '/srv/ftp/iso/latest/archlinux-' + NOW.strftime(
"%Y.%m") + '.01-x86_64.iso'
ISO_CHECKSUM_PATH = '/srv/ftp/iso/latest/sha1sums.txt'
PACKER_CMD_TEMPLATE = [
- "/usr/bin/packer", "build", "parallel=false", "-var", "'headless=true'",
+ "/usr/bin/packer", "build", "-parallel=false", "-var", "'headless=true'",
"-var", "'write_zeroes=yes'", "-except=vmware-iso", "vagrant.json"
]