Sha256: 632064437dc67754ab5701cb3fdeaa46b01d0fb6b147369ac741ad5c7cfa6b8f
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
# script_cli_parameters.sh ############ # This section reads the CLI parameters for the install script and translates # them to the local parameters to be used later by the script. # # Outputs: # $version: Requested version to be installed. # $channel: Channel to install the product from # $project: Project to be installed # $cmdline_filename: Name of the package downloaded on local disk. # $cmdline_dl_dir: Name of the directory downloaded package will be saved to on local disk. # $install_strategy: Method of package installations. default strategy is to always install upon exec. Set to "once" to skip if project is installed ############ # Defaults channel="stable" project="chef" while getopts pnv:c:f:P:d:s opt do case "$opt" in v) version="$OPTARG";; c) channel="$OPTARG";; p) channel="current";; # compat for prerelease option n) channel="current";; # compat for nightlies option f) cmdline_filename="$OPTARG";; P) project="$OPTARG";; d) cmdline_dl_dir="$OPTARG";; s) install_strategy="$OPTARG";; \?) # unknown flag echo >&2 \ "usage: $0 [-P project] [-c release_channel] [-v version] [-f filename | -d download_dir] [-s install_strategy]" exit 1;; esac done shift `expr $OPTIND - 1`
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mixlib-install-3.4.0 | lib/mixlib/install/generator/bourne/scripts/script_cli_parameters.sh |