diff options
Diffstat (limited to 'tools/draklive')
-rwxr-xr-x | tools/draklive | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/draklive b/tools/draklive index 9ff401fcb..dbca1094e 100755 --- a/tools/draklive +++ b/tools/draklive @@ -434,7 +434,7 @@ sub post_install_system { my @rpms = map { abs_path($_) } @{$live->{system}{rpms}}; each_index { !defined $_ and die "unable to find file " . $live->{system}{rpms}[$::i] } @rpms; - run_('urpmi', '--root', $live->{system}{root}, @rpms) if @rpms; + run_('urpmi', '--auto', '--root', $live->{system}{root}, @rpms) if @rpms; my @patches = map { abs_path($_) } @{$live->{system}{patches}}; each_index { !defined $_ and die "unable to find file " . $live->{system}{patches}[$::i] } @patches; |