diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-05-27 16:58:42 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-05-27 16:58:42 +0200 |
commit | 36bd76145a20479c867c7868e5c20396b2b9e30a (patch) | |
tree | ef5eaec54d755fd0a61b186985474e55e81f444f | |
parent | dc06856daff9ba68eea716956c2e2383d4097747 (diff) | |
download | alpine-conf-36bd76145a20479c867c7868e5c20396b2b9e30a.zip |
setup-apkrepos: force install virtual package
it is tmpfs and we know it will be removed on reboot. Infact, we want
it to be removed on reboot.
-rw-r--r-- | setup-apkrepos.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-apkrepos.in b/setup-apkrepos.in index ad9c309..e84b928 100644 --- a/setup-apkrepos.in +++ b/setup-apkrepos.in @@ -161,7 +161,7 @@ done # install alpine-mirrors if its not already there to_uninstall= if ! apk info --quiet --installed alpine-mirrors; then - apk add --quiet --virtual .setup-apkrepos alpine-mirrors + apk add --force --quiet --virtual .setup-apkrepos alpine-mirrors to_uninstall=.setup-apkrepos fi |