9 lines
116 B
Bash
Executable File
9 lines
116 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
switch='--off';
|
|
if [ "$1" == 'on' ]; then
|
|
switch='--on'
|
|
fi
|
|
|
|
xai occ maintenance:mode $switch
|