diff options
author | Colin Smith <colin@pfsense.org> | 2005-02-26 04:35:32 +0000 |
---|---|---|
committer | Colin Smith <colin@pfsense.org> | 2005-02-26 04:35:32 +0000 |
commit | 90c54d668f3b0c5bcd7767e11da5aa1479b4861f (patch) | |
tree | 397d3c5489f7bf4e2c1e8aedcde8e4ab0bcf624f /packages/pure-ftpdsettings.xml | |
parent | 0f57225f3c0364ae17ccc5a79d18dd719e7e4658 (diff) | |
download | pfsense-packages-90c54d668f3b0c5bcd7767e11da5aa1479b4861f.tar.gz pfsense-packages-90c54d668f3b0c5bcd7767e11da5aa1479b4861f.tar.bz2 pfsense-packages-90c54d668f3b0c5bcd7767e11da5aa1479b4861f.zip |
* Add config locking and remounting.
* FreeRADIUS typo correction.
* Change <name> in powerdns.xml: nmap -> powerdns
Diffstat (limited to 'packages/pure-ftpdsettings.xml')
-rw-r--r-- | packages/pure-ftpdsettings.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/pure-ftpdsettings.xml b/packages/pure-ftpdsettings.xml index 111548c7..c6435347 100644 --- a/packages/pure-ftpdsettings.xml +++ b/packages/pure-ftpdsettings.xml @@ -81,6 +81,8 @@ <custom_php_deinstall_command> </custom_php_deinstall_command> <custom_add_php_command> + conf_mount_rw(); + config_lock(); mwexec("rm /usr/local/etc/rc.d/pure-ftp*"); $fout = fopen("/usr/local/etc/rc.d/pure-ftpd.sh","w"); fwrite($fout, "#!/bin/sh\n\n"); @@ -95,6 +97,8 @@ $startline .= " -B /usr/local/etc/pure-ftpd.conf"; fwrite($fout, $startline . "\n"); fclose($fout); + conf_mount_ro(); + config_unlock(); mwexec("chmod a+x /usr/local/etc/rc.d/pure-ftpd.sh"); mwexec("/usr/local/etc/rc.d/pure-ftpd.sh"); </custom_add_php_command> |