diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-12-28 14:56:04 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-12-28 14:56:04 +0000 |
commit | 521a457f34c1a7862673be04aefc561543fa78eb (patch) | |
tree | e6b90cef43646e4239d77ce7324bba5ae6e4d519 /tools | |
parent | bdea09a60725398e61353a9c9adc4deb21013259 (diff) | |
download | drakx-521a457f34c1a7862673be04aefc561543fa78eb.tar drakx-521a457f34c1a7862673be04aefc561543fa78eb.tar.gz drakx-521a457f34c1a7862673be04aefc561543fa78eb.tar.bz2 drakx-521a457f34c1a7862673be04aefc561543fa78eb.tar.xz drakx-521a457f34c1a7862673be04aefc561543fa78eb.zip |
install packages using urpmi --auto
Diffstat (limited to 'tools')
-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; |