diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | draklive-install | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- disable timeout when running gurpmi2 to install updates + 2.25 - add option to install updates diff --git a/draklive-install b/draklive-install index b3212c3..592b667 100755 --- a/draklive-install +++ b/draklive-install @@ -486,7 +486,7 @@ Do you want to install the updates?")), }; my $log_file = '/root/drakx/updates.log'; - run_program::rooted($::prefix, 'gurpmi2', '>>', $log_file, '2>>', $log_file, '--auto-select'); + run_program::raw({ root => $::prefix, timeout => 'never' }, 'gurpmi2', '>>', $log_file, '2>>', $log_file, '--auto-select'); clean_rpmdb_shared_regions(); } |