X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Fmaintenance.php;h=9c9fc4f19d95404569c10e751fa6173f31a6f257;hb=88a70f9e2a08bbfaf3a1936447b441c0c6c2bd56;hp=d1ff94524e83cca07912cac4b5c1f706b3b76029;hpb=31c3bbf549ff1cc73385a417ed97efda29e87c54;p=friendica.git diff --git a/util/maintenance.php b/util/maintenance.php index d1ff94524e..9c9fc4f19d 100644 --- a/util/maintenance.php +++ b/util/maintenance.php @@ -1,8 +1,11 @@ 1) +if ($argc > 1) { $maint_mode = intval($argv[1]); -set_config('system', 'maintenance', $maint_mode); +} + +Config::set('system', 'maintenance', $maint_mode); + +if ($maint_mode && ($argc > 2)) { + $reason_arr = $argv; + array_shift($reason_arr); + array_shift($reason_arr); -if($maint_mode) + $reason = implode(' ', $reason_arr); + Config::set('system', 'maintenance_reason', $reason); +} else { + Config::set('system', 'maintenance_reason', ''); +} + +if ($maint_mode) { $mode_str = "maintenance mode"; -else +} else { $mode_str = "normal mode"; +} -echo "\n\tSystem set in $mode_str\n\n"; -echo "Usage:\n\n"; -echo "\tphp {$argv[0]} [1]\tSet the system in maintenance mode\n"; -echo "\tphp {$argv[0]} 0 \tSet the system in normal mode\n\n"; +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";