From ec1abf8926df98c14b0c529a6fae82f3b24f9d03 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 19 Jan 2017 23:17:39 +0100 Subject: [PATCH] Remove creation of now unused and broken provision.sh --- scripts/installer.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index f0ca7af7a..c203c7ef1 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -16,10 +16,6 @@ readonly box_src_tmp_dir="$(realpath ${script_dir}/..)" readonly is_update=$([[ -f "${CLOUDRON_CONF}" ]] && echo "yes" || echo "no") -# create a provision file for testing. %q escapes args. %q is reused as much as necessary to satisfy $@ -(echo -e "#!/bin/bash\n"; printf "%q " "${script_dir}/installer.sh" "$@") > /root/provision.sh -chmod +x /root/provision.sh - arg_data="" args=$(getopt -o "" -l "data:,data-file:" -n "$0" -- "$@")