X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fbasefiles%2Fmk-basefile;h=ccfd3677ec218fb7086eec123a33d7e6a2adc3ba;hb=ac4e0089e245c96a388b8fcdd92fc05da3399694;hp=36bacba37985bdf78fe902c978dfae5df0afc9e7;hpb=6201b20db7c46d78c9c11007c2aaa8d7f1738b6e;p=automated-distro-installer diff --git a/fai/config/basefiles/mk-basefile b/fai/config/basefiles/mk-basefile index 36bacba..ccfd367 100755 --- a/fai/config/basefiles/mk-basefile +++ b/fai/config/basefiles/mk-basefile @@ -1,5 +1,5 @@ #! /bin/bash - +set -x # mk-basefile, create basefiles for some distributions # # Thomas Lange, Uni Koeln, 2011-2017 @@ -102,6 +102,14 @@ EOM cleanup-deb() { + if [[ $cmd ]]; then + if [[ -e $cmd ]]; then + cp "$cmd" $xtmp/tmp + chroot $xtmp "/tmp/$cmd" + else + chroot $xtmp $cmd + fi + fi chroot $xtmp apt-get clean rm -f $xtmp/etc/hostname $xtmp/etc/resolv.conf \ $xtmp/var/lib/apt/lists/*_* $xtmp/usr/bin/qemu-*-static \ @@ -226,6 +234,8 @@ Usage: mk-basefile [OPTION] ... DISTRIBUTION -z Use gzip for compressing the tar file. -J Use xz for compressing the tar file. -k Keep the temporary subtree structure, do not remove it. + -x CMD Run CMD in chroot. If CMD exists as a file, copy it and run it. + Debian based only -h Print help. Usage example: mk-basefile -J STRETCH64 @@ -241,8 +251,9 @@ ext=tar zip=cat attributes= cleanup=1 +cmd= -while getopts ashzJd:kf: opt ; do +while getopts ashzJd:kf:x: opt ; do case "$opt" in a) attributes="--xattrs --selinux --acl" ;; d) export TMPDIR=$OPTARG ;; @@ -252,6 +263,7 @@ while getopts ashzJd:kf: opt ; do k) cleanup=0 ;; h) usage ;; s) prtdists ; exit 0;; + x) cmd="$OPTARG" ;; ?) exit 3 ;; # error in option parsing esac done