From f6fcda278166096b9bf1df41469defe8a721ece5 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 18 Mar 2018 23:40:56 -0400 Subject: [PATCH] Remove util/maintenance --- util/maintenance.php | 70 -------------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 util/maintenance.php diff --git a/util/maintenance.php b/util/maintenance.php deleted file mode 100644 index f0d7777765..0000000000 --- a/util/maintenance.php +++ /dev/null @@ -1,70 +0,0 @@ - 1) { - $maint_mode = intval($argv[1]); -} - -Config::set('system', 'maintenance', $maint_mode); - -if ($maint_mode && ($argc > 2)) { - $reason_arr = $argv; - array_shift($reason_arr); - array_shift($reason_arr); - - $reason = implode(' ', $reason_arr); - Config::set('system', 'maintenance_reason', $reason); -} else { - Config::set('system', 'maintenance_reason', ''); -} - -if ($maint_mode) { - $mode_str = "maintenance mode"; -} else { - $mode_str = "normal mode"; -} - -echo "\n\tSystem set in $mode_str\n"; - -if ($reason != '') { - echo "\tMaintenance reason: $reason\n\n"; -} else { - echo "\n"; -} - -echo "Usage:\n\n"; -echo "\tphp {$argv[0]} [1] [Maintenance reason|redirection url]\n"; -echo "\t\tSet the system in maintenance mode\n\n"; -echo "\t\tIf the optionally entered maintenance reason is an url\n"; -echo "\t\tthe visitor is redirected to that page.\n"; -echo "\n"; -echo "\t\tExamples:\n"; -echo "\t\t\tphp {$argv[0]} 1 System upgrade\n"; -echo "\t\t\tphp {$argv[0]} 1 http://domain.tld/downtime\n"; -echo "\n"; -echo "\tphp {$argv[0]} 0\n"; -echo "\t\tSet the system in normal mode\n\n";