Skip to content
Snippets Groups Projects
Commit 44991b8a authored by Till Brehm's avatar Till Brehm
Browse files

Fixed #4815 ISPConfig OS Update not working

parent 7fa98b3e
No related branches found
No related tags found
No related merge requests found
...@@ -279,8 +279,8 @@ class software_update_plugin { ...@@ -279,8 +279,8 @@ class software_update_plugin {
//** Debian and compatible Linux distributions //** Debian and compatible Linux distributions
if(file_exists('/etc/debian_version')) { if(file_exists('/etc/debian_version')) {
exec("aptitude update"); exec("apt-get update");
exec("aptitude safe-upgrade -y"); exec("apt-get upgrade -y");
$app->log('Execeuted Debian / Ubuntu update', LOGLEVEL_DEBUG); $app->log('Execeuted Debian / Ubuntu update', LOGLEVEL_DEBUG);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment