From 143d09ef2447e2eb8a21693b6bf9df459367f2aa Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 18 Jul 2016 15:48:17 +0200 Subject: Adding -f, --force option to container start command to remove stray lock files. Signed-off-by: Daniel Baumann --- lib/container/start | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/container/start b/lib/container/start index 7e11121..b8803b2 100755 --- a/lib/container/start +++ b/lib/container/start @@ -28,8 +28,8 @@ SYSTEMCTL="true" Parameters () { - LONG_OPTIONS="name:,nspawn,start," - OPTIONS="n:," + LONG_OPTIONS="name:,force,nspawn,start," + OPTIONS="n:f," PARAMETERS="$(getopt --longoptions ${LONG_OPTIONS} --name=${COMMAND} --options ${OPTIONS} --shell sh -- ${@})" @@ -49,6 +49,11 @@ Parameters () shift 2 ;; + -f|--force) + FORCE="true" + shift 1 + ;; + --nspawn) # internal option SYSTEMCTL="false" @@ -77,7 +82,7 @@ Parameters () Usage () { - echo "Usage: container ${COMMAND} -n|--name NAME" >&2 + echo "Usage: container ${COMMAND} -n|--name NAME [-f|--force]" >&2 exit 1 } @@ -109,8 +114,16 @@ esac if [ -e "${MACHINES}/.#${NAME}.lck" ] then - echo "'${NAME}': container is locked" >&2 - exit 1 + case "${FORCE}" in + true) + rm -f "${MACHINES}/.#${NAME}.lck" + ;; + + *) + echo "'${NAME}': container is locked" >&2 + exit 1 + ;; + esac fi HOST_ARCHITECTURE="$(dpkg --print-architecture)" -- cgit v1.2.3