mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-14 08:34:39 +00:00
9 lines
328 B
Plaintext
9 lines
328 B
Plaintext
global $config;
|
|
$config = parse_config(true);
|
|
unset($config['installedpackages']);
|
|
echo "Clearing package configuration information...\n";
|
|
write_config("pfSsh.php cleared package configuration data.");
|
|
$config = parse_config(true);
|
|
echo "Removing startup files from /usr/local/etc/rc.d/...\n";
|
|
exec("rm /usr/local/etc/rc.d/*");
|