summaryrefslogtreecommitdiffstats
path: root/etc/rc.initial.reboot
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2004-12-21 01:46:29 +0000
committerScott Ullrich <sullrich@pfsense.org>2004-12-21 01:46:29 +0000
commite3c4b6b767d3610774a2be78d4389908ede98807 (patch)
treeb67350133467b1e9cccbfaa812d0591536d88ffd /etc/rc.initial.reboot
parent98bbf05a82a4b45c1a37542979310c22c4ba17a1 (diff)
downloadpfsense-e3c4b6b767d3610774a2be78d4389908ede98807.zip
pfsense-e3c4b6b767d3610774a2be78d4389908ede98807.tar.gz
Finish packaging storage mechanism. Upon package deletin the package manager will loop through the variables and set them so that you can invoke commands such as system("pw userdel " . $username); from the xml configuration file.
Diffstat (limited to 'etc/rc.initial.reboot')
-rwxr-xr-xetc/rc.initial.reboot26
1 files changed, 13 insertions, 13 deletions
diff --git a/etc/rc.initial.reboot b/etc/rc.initial.reboot
index 053d492..d750ee7 100755
--- a/etc/rc.initial.reboot
+++ b/etc/rc.initial.reboot
@@ -3,20 +3,20 @@
/*
rc.initial.reboot
part of m0n0wall (http://m0n0.ch/wall)
-
+
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
All rights reserved.
-
+
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
-
+
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
-
+
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
-
+
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
@@ -32,24 +32,24 @@
/* parse the configuration and include all functions used below */
require_once("config.inc");
require_once("functions.inc");
-
+
$fp = fopen('php://stdin', 'r');
-
+
echo <<<EOD
-
-The firewall will reboot. This may take one minute.
-Do you want to proceed? (y/n)
+pfSense will reboot. This may take one minute.
+
+Do you want to proceed? (y/n)
EOD;
if (strcasecmp(chop(fgets($fp)), "y") == 0) {
-
+
echo <<<EOD
-The firewall is rebooting now.
+pfSense is rebooting now.
EOD;
-
+
system_reboot_sync();
}
?>
OpenPOWER on IntegriCloud