00a4664d73
and remove ${LOG}. It's a bit of a useless mechanism and, in fact a hindrance. Why not just let the user redirect stdout?
47 lines
1.2 KiB
Bash
Executable file
47 lines
1.2 KiB
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
source common/ui.sh
|
|
|
|
ROOTFS="/var/lib/lxc/${CONTAINER}/rootfs"
|
|
WORKING_DIR="/tmp/${CONTAINER}"
|
|
|
|
debug "Creating ${WORKING_DIR}"
|
|
mkdir -p ${WORKING_DIR}
|
|
mkdir -p $(dirname ${PACKAGE})
|
|
|
|
# TODO: Create file with build date / time on container
|
|
|
|
info "Packaging '${CONTAINER}' to '${PACKAGE}'..."
|
|
|
|
debug 'Stopping container'
|
|
lxc-stop -n ${CONTAINER} &>/dev/null || true
|
|
|
|
if [ -f ${WORKING_DIR}/rootfs.tar.gz ]; then
|
|
log "Removing previous rootfs tarball"
|
|
rm -f ${WORKING_DIR}/rootfs.tar.gz
|
|
fi
|
|
|
|
log "Compressing container's rootfs"
|
|
pushd $(dirname ${ROOTFS})
|
|
tar --numeric-owner --anchored --exclude=./rootfs/dev/log -czf \
|
|
${WORKING_DIR}/rootfs.tar.gz ./rootfs/*
|
|
popd
|
|
|
|
# Prepare package contents
|
|
log 'Preparing box package contents'
|
|
if [ -f conf/${DISTRIBUTION}-${RELEASE} ]; then
|
|
cp conf/${DISTRIBUTION}-${RELEASE} ${WORKING_DIR}/lxc-config
|
|
else
|
|
cp conf/${DISTRIBUTION} ${WORKING_DIR}/lxc-config
|
|
fi
|
|
cp conf/metadata.json ${WORKING_DIR}
|
|
sed -i "s/<TODAY>/${NOW}/" ${WORKING_DIR}/metadata.json
|
|
|
|
# Vagrant box!
|
|
log 'Packaging box'
|
|
TARBALL=$(readlink -f ${PACKAGE})
|
|
(cd ${WORKING_DIR} && tar -czf $TARBALL ./*)
|
|
|
|
chmod +rw ${PACKAGE}
|
|
chown ${USER}: ${PACKAGE}
|