diff options
author | mcrane <mctch@yahoo.com> | 2009-08-06 20:51:15 -0600 |
---|---|---|
committer | mcrane <mctch@yahoo.com> | 2009-08-06 20:51:15 -0600 |
commit | 7d66a5bdbb20df8a5e7e4266de177a2b22458fc7 (patch) | |
tree | c78df4b5bc3d27a023ae29809a1156f842b8124d /config | |
parent | 7339884165a21be6ccdbbb6e512e51fea6d009dd (diff) | |
download | pfsense-packages-7d66a5bdbb20df8a5e7e4266de177a2b22458fc7.tar.gz pfsense-packages-7d66a5bdbb20df8a5e7e4266de177a2b22458fc7.tar.bz2 pfsense-packages-7d66a5bdbb20df8a5e7e4266de177a2b22458fc7.zip |
FreeSWITCH dev change the package download directory.
Diffstat (limited to 'config')
-rw-r--r-- | config/freeswitch_dev/freeswitch.xml | 2 | ||||
-rw-r--r-- | config/freeswitch_dev/v_config.inc | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/config/freeswitch_dev/freeswitch.xml b/config/freeswitch_dev/freeswitch.xml index 3d81d728..b80b9916 100644 --- a/config/freeswitch_dev/freeswitch.xml +++ b/config/freeswitch_dev/freeswitch.xml @@ -44,7 +44,7 @@ <requirements>Describe your package requirements here</requirements> <faq>Currently there are no FAQ items provided.</faq> <name>Settings</name> - <version>0.9.7.3</version> + <version>0.9.7.4</version> <title>Settings</title> <include_file>/usr/local/pkg/v_config.inc</include_file> <menu> diff --git a/config/freeswitch_dev/v_config.inc b/config/freeswitch_dev/v_config.inc index fd051ac9..711eb1e3 100644 --- a/config/freeswitch_dev/v_config.inc +++ b/config/freeswitch_dev/v_config.inc @@ -2977,10 +2977,14 @@ function sync_package_freeswitch() function pkg_add($pkg_download_path, $pkg_name) { + if (!is_dir('/usr/pkgs/')) { + exec("mkdir /usr/pkgs/"); + } + $pkg_array = split("\.", $pkg_name); //if the package is not installed then download and install it if (!strlen(exec('pkg_info | grep '.$pkg_array[0])) > 0) { - chdir('/tmp/'); + chdir('/usr/pkgs/'); exec("fetch ".$pkg_download_path.$pkg_name); exec("pkg_add -F ".$pkg_name); exec("rm ".$pkg_name); @@ -2996,7 +3000,7 @@ function v_php_install_command() global $config; - $v_package_version = "0.9.7.3"; + $v_package_version = "0.9.7.4"; $v_build_version = "1.0.4"; $v_build_revision = "14306"; |