Skip to content

Commit 44991b8

Browse files
author
Till Brehm
committed
Fixed #4815 ISPConfig OS Update not working
1 parent 7fa98b3 commit 44991b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/plugins-available/software_update_plugin.inc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@ public function os_update($action_name, $data) {
279279

280280
//** Debian and compatible Linux distributions
281281
if(file_exists('/etc/debian_version')) {
282-
exec("aptitude update");
283-
exec("aptitude safe-upgrade -y");
282+
exec("apt-get update");
283+
exec("apt-get upgrade -y");
284284
$app->log('Execeuted Debian / Ubuntu update', LOGLEVEL_DEBUG);
285285
}
286286

0 commit comments

Comments
 (0)