diff options
author | Timo Teras <timo.teras@iki.fi> | 2009-03-04 08:37:51 +0200 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2009-03-04 08:37:51 +0200 |
commit | b674605e6d65804cc9b509636b762f293d904f3e (patch) | |
tree | 5034edfd3f2e97a4fa8ca0e4507ddbcde0481cae | |
parent | a0297a62b274ee2995bf06aa0bb836f46780df00 (diff) | |
download | abuild-b674605e6d65804cc9b509636b762f293d904f3e.tar.gz abuild-b674605e6d65804cc9b509636b762f293d904f3e.tar.bz2 abuild-b674605e6d65804cc9b509636b762f293d904f3e.tar.xz abuild-b674605e6d65804cc9b509636b762f293d904f3e.zip |
initramfs-init: use apk's --force
-rwxr-xr-x | initramfs-init | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/initramfs-init b/initramfs-init index bb4aae1..9603c4c 100755 --- a/initramfs-init +++ b/initramfs-init @@ -185,11 +185,11 @@ done if [ -n "$KOPT_chart" ]; then pkgs="$pkgs acct" fi -apkflags="" +apkflags="--initdb --quiet --progress --force" if [ -z "$KOPT_keep_apk_new" ]; then - apkflags="--clean-protected" + apkflags=" --clean-protected" fi -apk add --root /newroot --initdb --quiet --progress $apkflags $pkgs >/dev/null +apk add --root /newroot $apkflags $pkgs >/dev/null eend $? # copy alpine release info |