diff options
author | Mark Crane <mcrane@pfsense.org> | 2008-12-27 05:39:34 +0000 |
---|---|---|
committer | Mark Crane <mcrane@pfsense.org> | 2008-12-27 05:39:34 +0000 |
commit | 554342859467cd1556d216101fdbbc268f64eb9c (patch) | |
tree | f62670bd11771b4b8186dc6437991802d7babc30 | |
parent | 65f30611e3273570ac531e75a03c8cb35eebd55e (diff) | |
download | pfsense-packages-554342859467cd1556d216101fdbbc268f64eb9c.tar.gz pfsense-packages-554342859467cd1556d216101fdbbc268f64eb9c.tar.bz2 pfsense-packages-554342859467cd1556d216101fdbbc268f64eb9c.zip |
TFTP set permissions to 744 for uploaded TFTP files.
-rw-r--r-- | packages/tftp/tftp.inc | 3 | ||||
-rw-r--r-- | packages/tftp/tftp.xml | 2 | ||||
-rw-r--r-- | packages/tftp/tftp_files.tmp | 3 | ||||
-rw-r--r-- | pkg_config.7.xml | 2 |
4 files changed, 6 insertions, 4 deletions
diff --git a/packages/tftp/tftp.inc b/packages/tftp/tftp.inc index 531c3f29..32c11f8b 100644 --- a/packages/tftp/tftp.inc +++ b/packages/tftp/tftp.inc @@ -138,7 +138,8 @@ function php_install_command() //extract a specific directory to /usr/local/freeswitch if (file_exists('/tmp/'.$filename)) { - system('cd /; tar xvpfz /tmp/tftp.bak.tgz'); + system('cd /; tar xvpfz /tmp/tftp.bak.tgz'); + system('chmod -R 744 /tftpboot/*'); unset($filename); } diff --git a/packages/tftp/tftp.xml b/packages/tftp/tftp.xml index d80d7b75..d92e5301 100644 --- a/packages/tftp/tftp.xml +++ b/packages/tftp/tftp.xml @@ -41,7 +41,7 @@ <requirements>Describe your package requirements here</requirements> <faq>Currently there are no FAQ items provided.</faq> <name>tftp Settings</name> - <version>0.8.2</version> + <version>0.8.4</version> <title>TFTP: Settings</title> <include_file>/usr/local/pkg/tftp.inc</include_file> <menu> diff --git a/packages/tftp/tftp_files.tmp b/packages/tftp/tftp_files.tmp index 1ea1a346..b44ea22d 100644 --- a/packages/tftp/tftp_files.tmp +++ b/packages/tftp/tftp_files.tmp @@ -62,7 +62,8 @@ if ($_GET['a'] == "other") { //extract a specific directory to /tftpboot if (file_exists('/tmp/'.$filename)) { //echo "The file $filename exists"; - system('cd /; tar xvpfz /tmp/'.$filename); + system('cd /; tar xvpfz /tmp/'.$filename); + system('chmod -R 744 /tftpboot/*'); header( 'Location: tftp_files.php?savemsg=Backup+has+been+restored.' ) ; } else { diff --git a/pkg_config.7.xml b/pkg_config.7.xml index 4d42c884..cb6f8be7 100644 --- a/pkg_config.7.xml +++ b/pkg_config.7.xml @@ -80,7 +80,7 @@ <pkginfolink></pkginfolink> <config_file>http://www.pfsense.com/packages/config/tftp/tftp.xml</config_file> <depends_on_package_base_url>http://files.pfsense.org/packages/7/All/</depends_on_package_base_url> - <version>0.8.2</version> + <version>0.8.4</version> <status>Beta</status> <required_version>1.2.1</required_version> <maintainer>markjcrane@gmail.com</maintainer> |