Sha256: 370d1c97612b17978dac8305090698bac3614c329e56393578fd56baf4d7da3e
Contents?: true
Size: 663 Bytes
Versions: 3
Compression:
Stored size: 663 Bytes
Contents
#!/bin/bash # # Install a full kameleon # PROGNAME=`basename $0` INSTALLER_DIR=`dirname $0` DEST_DIR=/opt/kameleon CONFIG_DIR=/etc/kameleon USAGE="usage: $0" error_exit() { echo "${PROGNAME}: ${1:-"Unknown Error"}" 1>&2 exit 1 } # move the actual files into place rm -rf $DEST_DIR/* || error_exit "Cannot remove contents of $DEST_DIR" mkdir -p $DEST_DIR || error_exit "Cannot create $DEST_DIR" cp -R $INSTALLER_DIR $DEST_DIR || error_exit "Cannot install to $DEST_DIR" rm -f $DEST_DIR/$PROGNAME # You may want to symlink your packages bin files into /usr/bin ln -sf $DEST_DIR/bin/kameleon /usr/bin || error_exit "Cannot link kameleon to /usr/bin" exit 0
Version data entries
3 entries across 3 versions & 1 rubygems