diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-05-06 11:13:16 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-05-06 11:13:16 +0000 |
commit | 17c8c0e3af7932edb6bd4fa0fa6e32b8205d6928 (patch) | |
tree | 0d01873329b4184073c01af316e1ff6066ff25cd /lbu.in | |
parent | ec0c7a74bbf5824adc4efa54e1f91984ac870a8e (diff) | |
download | alpine-conf-17c8c0e3af7932edb6bd4fa0fa6e32b8205d6928.zip |
fixed VERSION in makefile and massed up .in files
Diffstat (limited to 'lbu.in')
-rw-r--r-- | lbu.in | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -4,7 +4,7 @@ # Copyright (c) 2006 Natanael Copa # May be distributed under GPL2 -VERSION=2.0_alpha7 +VERSION=@VERSION@ sysconfdir=@sysconfdir@ if [ ! -f ${libalpine:="./libalpine.sh"} ]; then @@ -491,6 +491,18 @@ Options: exit 1 } +cmd_status() { + if [ -n "$USE_DEFAULT" ]; then + apk audit --backup + return 0 + fi + # unpack old apkovl to tmpdir/a + # generate new apkovl and extract to tmpdir/b + # show files that exists in a but not in b as deleted + # compare files in b with files in a + # cleanup +} + #----------------------------------------------------------- |