diff options
author | doktornotor <notordoktor@gmail.com> | 2015-08-25 08:09:08 +0200 |
---|---|---|
committer | doktornotor <notordoktor@gmail.com> | 2015-08-25 08:09:08 +0200 |
commit | 3719585d678bf74e55559f724c4490852bcd6984 (patch) | |
tree | 6429f7c29d33b77ed54d923266dfcad9474f17ea | |
parent | 7d64d9d2a8a5cecb8400d4ab445ce3023fee50a9 (diff) | |
download | pfsense-packages-3719585d678bf74e55559f724c4490852bcd6984.tar.gz pfsense-packages-3719585d678bf74e55559f724c4490852bcd6984.tar.bz2 pfsense-packages-3719585d678bf74e55559f724c4490852bcd6984.zip |
remove useless remount calls
These are dealt with by install_package() from pkg-utils.inc.
-rw-r--r-- | config/shellcmd/shellcmd.inc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/config/shellcmd/shellcmd.inc b/config/shellcmd/shellcmd.inc index 8135bae8..113b645c 100644 --- a/config/shellcmd/shellcmd.inc +++ b/config/shellcmd/shellcmd.inc @@ -29,7 +29,6 @@ */ function shellcmd_install_command() { global $config; - conf_mount_rw(); /* Remove garbage left over by previous broken package versions */ unlink_if_exists("/usr/local/etc/rc.d/shellcmd.sh"); @@ -39,7 +38,6 @@ function shellcmd_install_command() { shellcmd_import_config(); shellcmd_sync_package(); - conf_mount_ro(); } |