diff options
author | Mark Crane <mcrane@pfsense.org> | 2008-12-26 18:14:03 +0000 |
---|---|---|
committer | Mark Crane <mcrane@pfsense.org> | 2008-12-26 18:14:03 +0000 |
commit | 8e7eb3d5eee794e0a5c9cc08e68e75745c6b9d34 (patch) | |
tree | 58382b184d0f2a12c0f27b4a753cc8aba1ae4570 /packages/tftp | |
parent | a05b6047746940a720388a88576017e21e7e829d (diff) | |
download | pfsense-packages-8e7eb3d5eee794e0a5c9cc08e68e75745c6b9d34.tar.gz pfsense-packages-8e7eb3d5eee794e0a5c9cc08e68e75745c6b9d34.tar.bz2 pfsense-packages-8e7eb3d5eee794e0a5c9cc08e68e75745c6b9d34.zip |
tftp package fix installation take 3.
Diffstat (limited to 'packages/tftp')
-rw-r--r-- | packages/tftp/tftp.inc | 2 | ||||
-rw-r--r-- | packages/tftp/tftp.xml | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/tftp/tftp.inc b/packages/tftp/tftp.inc index ee34c68c..034b8033 100644 --- a/packages/tftp/tftp.inc +++ b/packages/tftp/tftp.inc @@ -68,7 +68,7 @@ function pkg_is_service_running($servicename) } } -function sync_package() +function php_sync_package() { //global $config; diff --git a/packages/tftp/tftp.xml b/packages/tftp/tftp.xml index 48d273f0..af9b6478 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.3</version> + <version>0.4</version> <title>TFTP: Settings</title> <include_file>/usr/local/pkg/tftp.inc</include_file> <menu> @@ -122,10 +122,10 @@ <custom_add_php_command> </custom_add_php_command> <custom_php_resync_config_command> - sync_package(); + php_sync_package(); </custom_php_resync_config_command> <custom_delete_php_command> - sync_package(); + php_sync_package(); </custom_delete_php_command> <custom_php_install_command> php_install_command(); |