Sergey Kulanov 05d86902d5 [perestroika] Inject perestroika into fuel-mirror
While we have migration of perestroika to Python implementation
we need to have friendly and open way to share and fix issues
in current perestroika code

Change-Id: I7fced52ddadc81d4d8a52659358936f6e68cc3e4
Closes-bug: #1489470
2015-10-19 20:59:46 +03:00

12 lines
401 B
Bash

#!/bin/sh
. "${SETUP_DATA_DIR}/common-data"
. "${SETUP_DATA_DIR}/common-functions"
#. "$SETUP_DATA_DIR/common-config"
if [ "${STAGE}" = "setup-start" ]; then
mount -t tmpfs overlay /var/lib/schroot/union/overlay
elif [ "${STAGE}" = "setup-recover" ]; then
mount -t tmpfs overlay /var/lib/schroot/union/overlay
elif [ "${STAGE}" = "setup-stop" ]; then
umount -f /var/lib/schroot/union/overlay
fi