05d86902d5
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
12 lines
401 B
Bash
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
|