#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.2.3 # Package: dovecot #=========================== # DB commit: e480449868ca4262eee264eafd6c2d45b7f54583 # APP commit: b0e7f121177a769c20a4c985867d650259b096ce #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: dovecot" echo "Release: 0.2.3" downloadFile() { local filename=$1 echo "Downloading $filename ..." if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl -k -O $filename else wget --no-check-certificate -nc $filename fi } echo "loading environment settings(profile)" . /etc/profile 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/dovecot/ #Saving start timestamp date +%s > /var/log/ulfs-packages/dovecot/start.time #Going to source directory... cd /sources #Checking dependances... #Checking icu... if [ ! -f /var/cache/ulfs-packages/icu ]; then echo "Dependance \"icu\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/icu/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/icu/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/icu ]; then echo "Dependance \"icu\" 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..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/libtirpc/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/libtirpc/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/libtirpc ]; then echo "Dependance \"libtirpc\" is not installed. Exiting..." exit fi fi #Checking sqlite... if [ ! -f /var/cache/ulfs-packages/sqlite ]; then echo "Dependance \"sqlite\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/sqlite/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/sqlite/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/sqlite ]; then echo "Dependance \"sqlite\" 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..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/Linux-PAM/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/Linux-PAM/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/Linux-PAM ]; then echo "Dependance \"Linux-PAM\" 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..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/OpenLDAP-client/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/OpenLDAP-client/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/OpenLDAP-client ]; then echo "Dependance \"OpenLDAP-client\" is not installed. Exiting..." exit fi fi #Checking libcap... if [ ! -f /var/cache/ulfs-packages/libcap ]; then echo "Dependance \"libcap\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/libcap/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/libcap/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/libcap ]; then echo "Dependance \"libcap\" is not installed. Exiting..." exit fi fi #Checking mariadb-client... if [ ! -f /var/cache/ulfs-packages/mariadb-client ]; then echo "Dependance \"mariadb-client\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/mariadb-client/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/mariadb-client/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/mariadb-client ]; then echo "Dependance \"mariadb-client\" is not installed. Exiting..." exit fi fi #Checking postgresql-server... if [ ! -f /var/cache/ulfs-packages/postgresql-server ]; then echo "Dependance \"postgresql-server\" not found. Trying to install..."; if [[ "$ULFS_DOWNLOAD_APP" == "curl" ]]; then curl https://umvirt.com/linux/packages//0.2.3/postgresql-server/install -k | bash else wget --no-check-certificate https://umvirt.com/linux/packages//0.2.3/postgresql-server/install -O - | bash fi if [ ! -f /var/cache/ulfs-packages/postgresql-server ]; then echo "Dependance \"postgresql-server\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/dovecot/download.time #Downloading source package archive... downloadFile https://umvirt.com/linux/downloads/0.2.3/packages/d/dovecot-2.4.0.tar.gz.md5sum downloadFile https://umvirt.com/linux/downloads/0.2.3/packages/d/dovecot-2.4.0.tar.gz #Checking source package file existance if [ ! -f dovecot-2.4.0.tar.gz ]; then echo "Error: Can't find dovecot-2.4.0.tar.gz. Exiting!" exit fi #Checking source package file checksum if [ -f dovecot-2.4.0.tar.gz.md5sum ]; then MD5=`LANG=C md5sum -c dovecot-2.4.0.tar.gz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of dovecot-2.4.0.tar.gz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/dovecot/cleanup.time rm -rfv /sources/dovecot-2.4.0/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/dovecot/unpack.time #Extracting tar source package archive with default parameters... tar -xf dovecot-2.4.0.tar.gz #Checking package directory size after unpack... du -s dovecot-2.4.0 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/dovecot/unpack.size #Going to source package directory... cd dovecot-2.4.0 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/dovecot/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/dovecot-2.4.0 \! -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 "loading environment settings(profile)" . /etc/profile 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 groupadd -g 42 dovecot && useradd -c "Dovecot unprivileged user" -d /dev/null -u 42 \\ -g dovecot -s /bin/false dovecot && groupadd -g 43 dovenull && useradd -c "Dovecot login user" -d /dev/null -u 43 \\ -g dovenull -s /bin/false dovenull ./configure --prefix=/usr \\ --sysconfdir=/etc \\ --localstatedir=/var \\ --with-lua=no \\ --docdir=/usr/share/doc/dovecot-2.4.0 \\ --disable-static EOIS cat ulfs_configure.sh | bash 2>&1 | tee /var/log/ulfs-packages/dovecot/configure.log #Saving build timestamp date +%s > /var/log/ulfs-packages/dovecot/build.time #Running build script... echo "loading environment settings(profile)" . /etc/profile 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 EOIS cat ulfs_build.sh | bash 2>&1 | tee /var/log/ulfs-packages/dovecot/build.log #Saving install timestamp date +%s > /var/log/ulfs-packages/dovecot/install.time #Running install script... cat > ulfs_install.sh << EOIS make install EOIS echo "/sbin/ldconfig" >> ulfs_install.sh USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/dovecot/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/dovecot/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/dovecot/finish.time #Checking package directory size after unpack... cd /sources du -s dovecot-2.4.0 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/dovecot/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/dovecot/files.txt ]; then rm /var/log/ulfs-packages/dovecot/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt find /sbin -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt find /usr -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt find /etc -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time \! -path /etc/ld.so.cache >> /var/log/ulfs-packages/dovecot/files.txt find /opt -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt find /lib -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt find /var -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time \! -path "/var/log/ulfs-packages/dovecot/*" \! -path /var/cache/ldconfig/aux-cache >> /var/log/ulfs-packages/dovecot/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time \! -path /etc/ld.so.cache >> /var/log/ulfs-packages/dovecot/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time >> /var/log/ulfs-packages/dovecot/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/dovecot/configure.time \! -newer /var/log/ulfs-packages/dovecot/finish.time \! -path "/var/log/ulfs-packages/dovecot/*" \! -path /var/cache/ldconfig/aux-cache >> /var/log/ulfs-packages/dovecot/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/dovecot else sudo touch /var/cache/ulfs-packages/dovecot fi #Calculate delta size a=`cat /var/log/ulfs-packages/dovecot/unpack.size` b=`cat /var/log/ulfs-packages/dovecot/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/dovecot/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/dovecot/start.time` b=`cat /var/log/ulfs-packages/dovecot/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/dovecot/download.time` b=`cat /var/log/ulfs-packages/dovecot/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/dovecot/configure.time` b=`cat /var/log/ulfs-packages/dovecot/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/dovecot/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: dovecot" echo "Release: 0.2.3" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script