#!/usr/bin/env bash

switch='--off';
if [ "$1" == 'on' ]; then
  switch='--on'
fi

xai occ maintenance:mode $switch
