tunpack the tarball now and then - libdevuansdk - common library for devuan's simple distro kits
 (HTM) git clone https://git.parazyd.org/libdevuansdk
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit b7fedae88529443141471043acf75223befc5f34
 (DIR) parent fd2f5ec4ecba4e7753b3943e4d9cc6100584a992
 (HTM) Author: parazyd <parazyd@dyne.org>
       Date:   Sat, 15 Apr 2017 18:17:02 +0200
       
       unpack the tarball now and then
       
       Diffstat:
         M zlibs/bootstrap                     |       9 ++++-----
       
       1 file changed, 4 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git a/zlibs/bootstrap b/zlibs/bootstrap
       t@@ -116,7 +116,7 @@ bootstrap_tar_pack() {
                local _dest=$(dirname $bootstrap_tgz)
        
                if [[ -f $bootstrap_tgz ]]; then
       -                act "tarball found already in $_dest"
       +                notice "tarball found already in $_dest"
                else
                        notice "Creating boostrap tarball in $bootstrap_tgz"
                        silly
       t@@ -138,14 +138,13 @@ bootstrap_tar_unpack() {
                ckreq || return 1
        
                if [[ -f "${unpath}/.keep" ]]; then
       +                act "skipping tarball unpack"
       +        else
       +                sudo rm -rf ${unpath}
                        mkdir -p ${unpath}
                        silly
                        sudo tar xfp $bootstrap_tgz -C ${unpath}
                        sudo mkdir -p ${unpath}/{boot,dev,sys,proc}
       -        else
       -                error "no .keep file found. exiting..."
       -                zerr
       -                exit 1
                fi
        
                cat <<EOF | sudo tee ${strapdir}/postunpack >/dev/null