Be a lot more verbose in the logs during package reinstallation.

This commit is contained in:
jim-p 2013-06-28 14:53:26 -04:00
parent 866b1d615d
commit 2b125a17e9

View File

@ -1264,26 +1264,41 @@ function pkg_reinstall_all() {
@unlink('/conf/needs_package_sync');
if (is_array($config['installedpackages']['package'])) {
echo "One moment please, reinstalling packages...\n";
echo " >>> Trying to fetch package info...";
echo gettext("One moment please, reinstalling packages...\n");
echo gettext(" >>> Trying to fetch package info...");
log_error(gettext("Attempting to reinstall all packages"));
$pkg_info = get_pkg_info();
if ($pkg_info) {
echo " Done.\n";
} else {
$xmlrpc_base_url = isset($config['system']['altpkgrepo']['enable']) ? $config['system']['altpkgrepo']['xmlrpcbaseurl'] : $g['xmlrpcbaseurl'];
echo "\n" . sprintf(gettext(' >>> Unable to communicate with %1$s. Please verify DNS and interface configuration, and that %2$s has functional Internet connectivity.'), $xmlrpc_base_url, $g['product_name']) . "\n";
$error = sprintf(gettext(' >>> Unable to communicate with %1$s. Please verify DNS and interface configuration, and that %2$s has functional Internet connectivity.'), $xmlrpc_base_url, $g['product_name']);
echo "\n{$error}\n";
log_error(gettext("Cannot reinstall packages: ") . $error);
return;
}
$todo = array();
foreach($config['installedpackages']['package'] as $package)
$all_names = array();
foreach($config['installedpackages']['package'] as $package) {
$todo[] = array('name' => $package['name'], 'version' => $package['version']);
$all_names[] = $package['name'];
}
$package_name_list = gettext("List of packages to reinstall: ") . implode(", ", $all_names);
echo " >>> {$package_name_list}\n";
log_error($package_name_list);
foreach($todo as $pkgtodo) {
$static_output = "";
if($pkgtodo['name']) {
log_error(gettext("Uninstalling package") . " {$pkgtodo['name']}");
uninstall_package($pkgtodo['name']);
log_error(gettext("Finished uninstalling package") . " {$pkgtodo['name']}");
log_error(gettext("Reinstalling package") . " {$pkgtodo['name']}");
install_package($pkgtodo['name']);
log_error(gettext("Finished installing package") . " {$pkgtodo['name']}");
}
}
log_error(gettext("Finished reinstalling all packages."));
} else
echo "No packages are installed.";
}