summaryrefslogtreecommitdiffstats
path: root/etc/inc/pkg-utils.inc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2010-12-25 13:38:23 -0500
committerScott Ullrich <sullrich@pfsense.org>2010-12-25 13:38:23 -0500
commit2b216e519932db68a12d70e731138021995944a1 (patch)
tree55921056eabc472b5d33bc90c55ada510e017d0b /etc/inc/pkg-utils.inc
parent9b3ade76caa359367f71d73de60a88284690d77d (diff)
downloadpfsense-2b216e519932db68a12d70e731138021995944a1.zip
pfsense-2b216e519932db68a12d70e731138021995944a1.tar.gz
misc text formatting fixes (tabs)
Diffstat (limited to 'etc/inc/pkg-utils.inc')
-rw-r--r--etc/inc/pkg-utils.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/etc/inc/pkg-utils.inc b/etc/inc/pkg-utils.inc
index b7f4d6d..6b5f3a3 100644
--- a/etc/inc/pkg-utils.inc
+++ b/etc/inc/pkg-utils.inc
@@ -427,7 +427,7 @@ function pkg_fetch_recursive($pkgname, $filename, $dependlevel = 0, $base_url =
$base_url = substr($base_url, 0, -1);
$static_output .= "\n" . str_repeat(" ", $dependlevel * 2) . $pkgname . " ";
$fetchto = "{$g['tmp_path']}/apkg_{$filename}";
- $static_output .= "\n" . str_repeat(" ", $dependlevel * 2 + 1) . "Downloading {$base_url}/{$filename} ... ";
+ $static_output .= "\n\t" . str_repeat(" ", $dependlevel * 2 + 1) . "Downloading {$base_url}/{$filename} ... ";
if (download_file_with_progress_bar("{$base_url}/{$filename}", $fetchto) !== true) {
if ($base_url != $priv_url && download_file_with_progress_bar("{$priv_url}/{$filename}", $fetchto) !== true) {
$static_output .= " could not download from there or {$priv_url}/{$filename}.\n";
@@ -620,7 +620,7 @@ function install_package_xml($pkg) {
}
$configfile = substr(strrchr($pkg_info['config_file'], '/'), 1);
if(file_exists("/usr/local/pkg/" . $configfile)) {
- $static_output .= "\nLoading package configuration... ";
+ $static_output .= "\n\tLoading package configuration... ";
update_output_window($static_output);
$pkg_config = parse_xml_config_pkg("/usr/local/pkg/" . $configfile, "packagegui");
$static_output .= "done.\n";
@@ -690,7 +690,7 @@ function install_package_xml($pkg) {
*/
$missing_include = false;
if($pkg_config['include_file'] <> "") {
- $static_output .= "Loading package instructions...\n";
+ $static_output .= "\tLoading package instructions...\n";
update_output_window($static_output);
pkg_debug("require_once('{$pkg_config['include_file']}')\n");
if (file_exists($pkg_config['include_file']))
@@ -772,7 +772,7 @@ function install_package_xml($pkg) {
}
}
} else {
- $static_output .= "Loading package configuration... failed!\n\nInstallation aborted.";
+ $static_output .= "\tLoading package configuration... failed!\n\nInstallation aborted.";
update_output_window($static_output);
pkg_debug("Unable to load package configuration. Installation aborted.\n");
if($pkg_interface <> "console") {
@@ -923,7 +923,7 @@ function delete_package_xml($pkg) {
*/
$missing_include = false;
if($pkg_config['include_file'] <> "") {
- $static_output .= "Loading package instructions...\n";
+ $static_output .= "\tLoading package instructions...\n";
update_output_window($static_output);
pkg_debug("require_once(\"{$pkg_config['include_file']}\")\n");
if (file_exists($pkg_config['include_file']))
OpenPOWER on IntegriCloud