blob: 92e55fd877a17725f085c9e1e24d1c86aff48269 [file] [log] [blame]
#!/bin/bash
# Builds and uploads a debian package for the rack jumphosts.
# Make sure we have a rack id.
ALL_IDS="rpi-001 linux-001"
print_usage() {
echo "Usage: $0 MESSAGE INSTANCE_ID"
echo " MESSAGE is the message to be included in the release package."
echo " INSTANCE_ID is the id of the instance targeted by this package."
echo " This should be one of: '$ALL_IDS' or 'all'."
exit 1
}
if [ "$#" -ne 2 ]; then
print_usage
fi
set -x -e
TARGET_INSTANCE_IDS=$2
# Strip the second argument to keep this compatible with the shared build script.
set -- "$1"
# Determine the instance ids we want to build
if [ "$TARGET_INSTANCE_IDS" = "all" ]; then
TARGET_INSTANCE_IDS=$ALL_IDS
fi
for INSTANCE_ID in $TARGET_INSTANCE_IDS; do
APPNAME="jumphost-${INSTANCE_ID}"
DESCRIPTION="Package to run the ${APPNAME} rack in the skolo."
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
INSTALL="sudo install -D --verbose --backup=none --group=root --owner=root"
INSTALL_DIR="sudo install -d --verbose --backup=none --group=root --owner=root"
# Install the powercycle binary and config files.
${INSTALL} --mode=755 -T ${GOPATH}/bin/powercycle-cli ${ROOT}/usr/local/bin/powercycle
${INSTALL} --mode=644 -T ./sys/powercycle-${INSTANCE_ID}.yaml ${ROOT}/etc/powercycle.yaml
}
source ../bash/release.sh
done