#!/bin/sh

case "$1" in
  start)
    echo 'Maintenance mode -> no boot scripts will be run'      
    ;;
  stop)
    ;;
  *)
    exit 1
    ;;
esac
    
exit 0
