#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.2 # Package: samba #=========================== # DB commit: 48bb9ee31306c82c48dfaaad707eb4f6a926eb8a # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: samba" echo "Release: 0.2.2" echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi #Creating log directory mkdir -p /var/log/ulfs-packages/samba/ #Saving start timestamp date +%s > /var/log/ulfs-packages/samba/start.time #Going to source directory... cd /sources #Checking dependances... #Checking python3-cryptography... if [ ! -f /var/cache/ulfs-packages/python3-cryptography ]; then echo "Dependance \"python3-cryptography\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/python3-cryptography/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-cryptography ]; then echo "Dependance \"python3-cryptography\" is not installed. Exiting..." exit fi fi #Checking python3-pyasn1... if [ ! -f /var/cache/ulfs-packages/python3-pyasn1 ]; then echo "Dependance \"python3-pyasn1\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/python3-pyasn1/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-pyasn1 ]; then echo "Dependance \"python3-pyasn1\" is not installed. Exiting..." exit fi fi #Checking python3-dateutil... if [ ! -f /var/cache/ulfs-packages/python3-dateutil ]; then echo "Dependance \"python3-dateutil\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/python3-dateutil/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-dateutil ]; then echo "Dependance \"python3-dateutil\" is not installed. Exiting..." exit fi fi #Checking icu... if [ ! -f /var/cache/ulfs-packages/icu ]; then echo "Dependance \"icu\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/icu/install -O - | bash if [ ! -f /var/cache/ulfs-packages/icu ]; then echo "Dependance \"icu\" is not installed. Exiting..." exit fi fi #Checking libxslt... if [ ! -f /var/cache/ulfs-packages/libxslt ]; then echo "Dependance \"libxslt\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libxslt/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libxslt ]; then echo "Dependance \"libxslt\" is not installed. Exiting..." exit fi fi #Checking libtasn1... if [ ! -f /var/cache/ulfs-packages/libtasn1 ]; then echo "Dependance \"libtasn1\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libtasn1/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libtasn1 ]; then echo "Dependance \"libtasn1\" is not installed. Exiting..." exit fi fi #Checking libtirpc... if [ ! -f /var/cache/ulfs-packages/libtirpc ]; then echo "Dependance \"libtirpc\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/libtirpc/install -O - | bash if [ ! -f /var/cache/ulfs-packages/libtirpc ]; then echo "Dependance \"libtirpc\" is not installed. Exiting..." exit fi fi #Checking Linux-PAM... if [ ! -f /var/cache/ulfs-packages/Linux-PAM ]; then echo "Dependance \"Linux-PAM\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/Linux-PAM/install -O - | bash if [ ! -f /var/cache/ulfs-packages/Linux-PAM ]; then echo "Dependance \"Linux-PAM\" is not installed. Exiting..." exit fi fi #Checking gnutls... if [ ! -f /var/cache/ulfs-packages/gnutls ]; then echo "Dependance \"gnutls\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gnutls/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gnutls ]; then echo "Dependance \"gnutls\" is not installed. Exiting..." exit fi fi #Checking OpenLDAP-client... if [ ! -f /var/cache/ulfs-packages/OpenLDAP-client ]; then echo "Dependance \"OpenLDAP-client\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/OpenLDAP-client/install -O - | bash if [ ! -f /var/cache/ulfs-packages/OpenLDAP-client ]; then echo "Dependance \"OpenLDAP-client\" is not installed. Exiting..." exit fi fi #Checking jansson... if [ ! -f /var/cache/ulfs-packages/jansson ]; then echo "Dependance \"jansson\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/jansson/install -O - | bash if [ ! -f /var/cache/ulfs-packages/jansson ]; then echo "Dependance \"jansson\" is not installed. Exiting..." exit fi fi #Checking perl-JSON... if [ ! -f /var/cache/ulfs-packages/perl-JSON ]; then echo "Dependance \"perl-JSON\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/perl-JSON/install -O - | bash if [ ! -f /var/cache/ulfs-packages/perl-JSON ]; then echo "Dependance \"perl-JSON\" is not installed. Exiting..." exit fi fi #Checking perl-Parse-Yapp... if [ ! -f /var/cache/ulfs-packages/perl-Parse-Yapp ]; then echo "Dependance \"perl-Parse-Yapp\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/perl-Parse-Yapp/install -O - | bash if [ ! -f /var/cache/ulfs-packages/perl-Parse-Yapp ]; then echo "Dependance \"perl-Parse-Yapp\" is not installed. Exiting..." exit fi fi #Checking rpcsvc... if [ ! -f /var/cache/ulfs-packages/rpcsvc ]; then echo "Dependance \"rpcsvc\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/rpcsvc/install -O - | bash if [ ! -f /var/cache/ulfs-packages/rpcsvc ]; then echo "Dependance \"rpcsvc\" is not installed. Exiting..." exit fi fi #Checking fuse... if [ ! -f /var/cache/ulfs-packages/fuse ]; then echo "Dependance \"fuse\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/fuse/install -O - | bash if [ ! -f /var/cache/ulfs-packages/fuse ]; then echo "Dependance \"fuse\" is not installed. Exiting..." exit fi fi #Checking gpgme... if [ ! -f /var/cache/ulfs-packages/gpgme ]; then echo "Dependance \"gpgme\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.2.2/gpgme/install -O - | bash if [ ! -f /var/cache/ulfs-packages/gpgme ]; then echo "Dependance \"gpgme\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/samba/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/s/samba-4.20.4.tar.gz.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.2.2/packages/s/samba-4.20.4.tar.gz #Checking source package file existance if [ ! -f samba-4.20.4.tar.gz ]; then echo "Error: Can't find samba-4.20.4.tar.gz. Exiting!" exit fi #Checking source package file checksum if [ -f samba-4.20.4.tar.gz.md5sum ]; then MD5=`LANG=C md5sum -c samba-4.20.4.tar.gz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of samba-4.20.4.tar.gz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/samba/cleanup.time rm -rfv /sources/samba-4.20.4/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/samba/unpack.time #Extracting tar source package archive with default parameters... tar -xf samba-4.20.4.tar.gz #Checking package directory size after unpack... du -s samba-4.20.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/samba/unpack.size #Going to source package directory... cd samba-4.20.4 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/samba/configure.time #Sleep 1 second sleep 1 if [[ "$ULFS_PKG_DATERESET" == "YES" ]] then #Changing all files creation time (except build configuration files) in source directory to find them after installation find /sources/samba-4.20.4 \! -path "*/configure*" \! -path "*/Makefile*" \! -path "*.make" \! -path "*.m4" \! -path "*.am" \! -path "*.mk" \! -path "*.stamp" \! -path "*gentpl.py" -exec touch -m {} + fi #Running configuration script... echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi cat > ulfs_configure.sh << EOIS echo "Initializing distributed build environment... " if [[ "\$ULFS_ICECC" == "YES" ]] then export PATH="\$ULFS_ICECC_PATH:\$PATH" echo "ICECC" fi echo "Environment debug..." echo "PATH: \$PATH" echo "MAKEFLAGS: \$MAKEFLAGS" echo "NINJAJOBS: \$NINJAJOBS" env | grep ULFS #python3 -m venv pyvenv #PYTHON=\$PWD/pyvenv/bin/python3 ./configure \\ --prefix=/usr \\ --sysconfdir=/etc \\ --localstatedir=/var \\ --with-piddir=/run/samba \\ --with-pammodulesdir=/usr/lib/security \\ --enable-fhs \\ --without-ad-dc \\ --with-system-mitkrb5 \\ --enable-selftest \\ --disable-rpath-install EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/samba/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/samba/build.time #Running build script... echo "checking config file" if [ -f $ULFS_CONFIG_FILE ] then echo "loading config file $ULFS_CONFIG_FILE..." . $ULFS_CONFIG_FILE fi cat > ulfs_build.sh << EOIS echo "Initializing distributed build environment... " if [[ "\$ULFS_ICECC" == "YES" ]] then export PATH="\$ULFS_ICECC_PATH:\$PATH" echo "ICECC" fi echo "Environment debug..." echo "PATH: \$PATH" echo "MAKEFLAGS: \$MAKEFLAGS" echo "NINJAJOBS: \$NINJAJOBS" env | grep ULFS make sed '1s@^.*\$@#!/usr/bin/python3@' \\ -i ./bin/default/source4/scripting/bin/*.inst EOIS cat ulfs_build.sh | bash 2>&1 | tee /var/log/ulfs-packages/samba/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/samba/install.time #Running install script... cat > ulfs_install.sh << EOIS make install && install -v -m644 examples/smb.conf.default /etc/samba && sed -e "s;log file =.*;log file = /var/log/samba/%m.log;" \ -e "s;path = /usr/spool/samba;path = /var/spool/samba;" \ -i /etc/samba/smb.conf.default && mkdir -pv /etc/openldap/schema && install -v -m644 examples/LDAP/README \ /etc/openldap/schema/README.samba && install -v -m644 examples/LDAP/samba* \ /etc/openldap/schema && install -v -m755 examples/LDAP/{get*,ol*} \ /etc/openldap/schema EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/samba/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/samba/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/samba/finish.time #Checking package directory size after unpack... cd /sources du -s samba-4.20.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/samba/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/samba/files.txt ]; then rm /var/log/ulfs-packages/samba/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt find /sbin -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt find /usr -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt find /etc -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt find /opt -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt find /lib -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt find /var -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time \! -path "/var/log/ulfs-packages/samba/*" >> /var/log/ulfs-packages/samba/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time >> /var/log/ulfs-packages/samba/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/samba/configure.time \! -newer /var/log/ulfs-packages/samba/finish.time \! -path "/var/log/ulfs-packages/samba/*" >> /var/log/ulfs-packages/samba/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/samba else sudo touch /var/cache/ulfs-packages/samba fi #Calculate delta size a=`cat /var/log/ulfs-packages/samba/unpack.size` b=`cat /var/log/ulfs-packages/samba/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/samba/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/samba/start.time` b=`cat /var/log/ulfs-packages/samba/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/samba/download.time` b=`cat /var/log/ulfs-packages/samba/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/samba/configure.time` b=`cat /var/log/ulfs-packages/samba/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/samba/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: samba" echo "Release: 0.2.2" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script