diff options
author | doktornotor <notordoktor@gmail.com> | 2015-09-11 08:21:45 +0200 |
---|---|---|
committer | doktornotor <notordoktor@gmail.com> | 2015-09-11 08:21:45 +0200 |
commit | 5258cd801edee2afe9b1bceacb4c7cfca3dc9357 (patch) | |
tree | a72fe19bf8e771ff0ca69d9fabe7795e57b2fcbd | |
parent | d8a8828ab693a3db1ac2f93b8b52f8816c3866d0 (diff) | |
download | pfsense-packages-5258cd801edee2afe9b1bceacb4c7cfca3dc9357.tar.gz pfsense-packages-5258cd801edee2afe9b1bceacb4c7cfca3dc9357.tar.bz2 pfsense-packages-5258cd801edee2afe9b1bceacb4c7cfca3dc9357.zip |
sshdcond - 2.1.x compatible boot check
-rw-r--r-- | config/sshdcond/sshdcond.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/sshdcond/sshdcond.inc b/config/sshdcond/sshdcond.inc index c7c19291..9c3a8bb9 100644 --- a/config/sshdcond/sshdcond.inc +++ b/config/sshdcond/sshdcond.inc @@ -62,7 +62,11 @@ function sshdcond_custom_php_write_config() { global $g, $config, $pkg_interface; /* Detect boot process, do nothing during boot. */ - if (platform_booting()) { + if (function_exists("platform_booting")) { + if (platform_booting()) { + return; + } + } elseif ($g['booting']) { return; } |