X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=fai%2Fconfig%2Fbasefiles%2Fmk-basefile;h=ebbe3d9ae43f850a5ec154c7953f4a137cdde95c;hb=7024f2155d8d5e4754d5c1ce0ccf8352149f81cd;hp=6eb29dbf4a54e86c2b8aab8f07578572c37571bb;hpb=3bd65f0ca635f1349626c2393a4dd8a50df64f54;p=automated-distro-installer diff --git a/fai/config/basefiles/mk-basefile b/fai/config/basefiles/mk-basefile index 6eb29db..ebbe3d9 100755 --- a/fai/config/basefiles/mk-basefile +++ b/fai/config/basefiles/mk-basefile @@ -2,15 +2,12 @@ # mk-basefile, create basefiles for some distributions # -# Thomas Lange, Uni Koeln, 2011-2015 +# Thomas Lange, Uni Koeln, 2011-2017 # based on the Makefile implementation of Michael Goetze -# -# Usage example: fai-mk-basefile -J SQUEEZE64 -# This will create a SQUEEZE64.tar.xz basefile. # Supported distributions (each i386/amd64): # Debian GNU/Linux -# Ubuntu 14.04 +# Ubuntu 14.04/16.04 # CentOS 5/6/7 # Scientific Linux Cern 5/6 # @@ -21,16 +18,16 @@ # Define your local mirros here # For the first stage, set the CentOS/SLC mirror in /etc/rinse/rinse.conf MIRROR_DEBIAN=http://httpredir.debian.org/debian/ -MIRROR_DEBIAN=http://localmirror/debian/ MIRROR_UBUNTU=http://mirror.netcologne.de/ubuntu/ MIRROR_CENTOS=http://mirror.netcologne.de/ -#MIRROR_CENTOS=http://localmirror -#MIRROR_SLC=http://localmirror EXCLUDE_SQUEEZE=isc-dhcp-client,isc-dhcp-common,info,tasksel,tasksel-data -EXCLUDE_WHEEZY=isc-dhcp-client,isc-dhcp-common,info,tasksel,tasksel-data -EXCLUDE_JESSIE=isc-dhcp-client,isc-dhcp-common,info,tasksel,tasksel-data +EXCLUDE_WHEEZY=info,tasksel,tasksel-data +EXCLUDE_JESSIE=tasksel,tasksel-data +EXCLUDE_STRETCH=tasksel,tasksel-data + EXCLUDE_TRUSTY=dhcp3-client,dhcp3-common,info +EXCLUDE_XENIAL=tasksel,tasksel-data INCLUDE_DEBIAN=aptitude @@ -123,7 +120,7 @@ cleanup-rinse() { tarit() { - tar --xattrs --selinux --acl --one-file-system -C $xtmp -cf - . | $zip > $target.$ext + tar $attributes --one-file-system -C $xtmp -cf - . | $zip > $target.$ext } @@ -157,50 +154,30 @@ slc() { } -squeeze() { - - local arch=$1 - - check - debootstrap --arch $arch --exclude=${EXCLUDE_SQUEEZE} squeeze $xtmp ${MIRROR_DEBIAN} - cleanup-deb - tarit -} - -wheezy() { - - local arch=$1 +debgeneric() { - check - debootstrap --arch $arch --exclude=${EXCLUDE_WHEEZY} wheezy $xtmp ${MIRROR_DEBIAN} - cleanup-deb - tarit -} + local DIST=$1 + shift + local mirror=$1 -jessie() { - - local arch=$1 - - check - debootstrap --arch $arch --exclude=${EXCLUDE_JESSIE} --include=${INCLUDE_DEBIAN} jessie $xtmp ${MIRROR_DEBIAN} - cleanup-deb - tarit -} - -trusty() { + if [[ $DIST =~ 64 ]]; then + arch=amd64 + else + arch=i386 + fi - local arch=$1 + DIST=${DIST%%??} + dist=${DIST,,} + local exc="EXCLUDE_$DIST" check - debootstrap --arch $arch --exclude=${EXCLUDE_TRUSTY} --include=${INCLUDE_DEBIAN} trusty $xtmp ${MIRROR_UBUNTU} + debootstrap --arch $arch --exclude=${!exc} --include=${INCLUDE_DEBIAN} $dist $xtmp $mirror cleanup-deb tarit } +prtdists() { -unknown() { - - echo "Unknown distribution. Aborting." echo "Available: CENTOS5_32 CENTOS5_64 @@ -208,35 +185,67 @@ unknown() { CENTOS7_32 CENTOS7_64 SLC5_32 SLC5_64 SLC6_32 SLC6_64 + SLC7_64 TRUSTY32 TRUSTY64 + XENIAL32 XENIAL64 SQUEEZE32 SQUEEZE64 WHEEZY32 WHEEZY64 JESSIE32 JESSIE64 + STRETCH32 STRETCH64 " - exit 99 } +usage() { + + cat <