#!/bin/sh

# Load ipmodule variables
. /opt/gira/share/devicestack/ipmodule-vars

case "$1" in
	start)
		${OTPLOCK} --lock-otp-now
		;;
	stop)
		;;
	*)
		printf "Usage: %s (start|stop)\\n" "$0"
		exit 1
esac

exit 0
