From 38d7ffca0b591694c17509d20c8bf55606e60536 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 27 Oct 2013 15:07:31 +0100 Subject: app-ls-apps: o New command to list all applications installed under a directory. app-foreach-app: o New command to execute another command for each app installed under the current directory. app-init/app-install-file: o Adding -C and -c to prepand and append config files around the appliation's build-in configuration files. app-cat-conf: o Use $APP_HOME as the 'appliation installation directory' if set. app-operator-pid: o Support PID files created by the launcher. --- bin/app-init | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) (limited to 'bin/app-init') diff --git a/bin/app-init b/bin/app-init index fb4f7cd..534a876 100755 --- a/bin/app-init +++ b/bin/app-init @@ -13,7 +13,9 @@ usage_text() { } dir= -while getopts "d:" opt +prepend_config= +append_config= +while getopts "d:C:c:" opt do case $opt in d) @@ -21,6 +23,24 @@ do shift 2 OPTIND=1 ;; + C) + prepend_config=$OPTARG + if [[ ! prepend_config =~ ^/ ]] + then + prepend_config="`pwd`/$prepend_config" + fi + shift 2 + OPTIND=1 + ;; + c) + append_config=$OPTARG + if [[ ! append_config =~ ^/ ]] + then + append_config="`pwd`/$append_config" + fi + shift 2 + OPTIND=1 + ;; esac done @@ -52,7 +72,7 @@ fi mkdir -p -- "$dir" "$dir/.app" ok=no -clean_dir=`cd "$dir">/dev/null; pwd` +clean_dir=`cd "$dir" && pwd` trap '[[ $ok == yes ]] || rm -rf "$clean_dir"' EXIT cd "$dir" @@ -74,6 +94,10 @@ echo "Resolved version to $resolved_version" "$resolver" download-version -v "$resolved_version" -f .app/latest.zip -app-install-file -v "$resolved_version" -f .app/latest.zip +app-install-file \ + -v "$resolved_version" \ + ${prepend_config:+-C "$prepend_config"} \ + ${append_config:+-c "$append_config"} \ + -f .app/latest.zip ok=yes -- cgit v1.2.3