Skip to content

Instantly share code, notes, and snippets.

@rjmoggach
Created February 2, 2020 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rjmoggach/cfe57d363094fc778b6ec610fcbab7b2 to your computer and use it in GitHub Desktop.
Save rjmoggach/cfe57d363094fc778b6ec610fcbab7b2 to your computer and use it in GitHub Desktop.
NextCloud Toggle Maintenance Mode
#!/usr/bin/env bash
function get_maint() {
echo `sudo -u www-data php /var/www/nextcloud/occ maintenance:mode`
}
function set_maint() {
sudo -u www-data php /var/www/nextcloud/occ maintenance:mode --on
}
function unset_maint() {
sudo -u www-data php /var/www/nextcloud/occ maintenance:mode --off
}
if [[ `get_maint` =~ "disabled" ]]; then
set_maint
else
unset_maint
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment