#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.1 # Package: httpd #=========================== # DB commit: d35a620850806ab581b32cb34d268a904c9c0a5f # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: httpd" echo "Release: 0.1" 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/httpd/ #Saving start timestamp date +%s > /var/log/ulfs-packages/httpd/start.time #Going to source directory... cd /sources #Checking dependances... #Checking pcre... if [ ! -f /var/cache/ulfs-packages/pcre ]; then echo "Dependance \"pcre\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/pcre/install -O - | bash if [ ! -f /var/cache/ulfs-packages/pcre ]; then echo "Dependance \"pcre\" is not installed. Exiting..." exit fi fi #Checking blfs-systemd-units... if [ ! -f /var/cache/ulfs-packages/blfs-systemd-units ]; then echo "Dependance \"blfs-systemd-units\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/blfs-systemd-units/install -O - | bash if [ ! -f /var/cache/ulfs-packages/blfs-systemd-units ]; then echo "Dependance \"blfs-systemd-units\" is not installed. Exiting..." exit fi fi #Checking berkeleydb... if [ ! -f /var/cache/ulfs-packages/berkeleydb ]; then echo "Dependance \"berkeleydb\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/berkeleydb/install -O - | bash if [ ! -f /var/cache/ulfs-packages/berkeleydb ]; then echo "Dependance \"berkeleydb\" is not installed. Exiting..." exit fi fi #Checking lua... if [ ! -f /var/cache/ulfs-packages/lua ]; then echo "Dependance \"lua\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/lua/install -O - | bash if [ ! -f /var/cache/ulfs-packages/lua ]; then echo "Dependance \"lua\" is not installed. Exiting..." exit fi fi #Checking apr-util... if [ ! -f /var/cache/ulfs-packages/apr-util ]; then echo "Dependance \"apr-util\" not found. Trying to install..."; wget --no-check-certificate https://umvirt.com/linux/packages//0.1/apr-util/install -O - | bash if [ ! -f /var/cache/ulfs-packages/apr-util ]; then echo "Dependance \"apr-util\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/httpd/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/h/httpd-2.4.34.tar.bz2.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/h/httpd-2.4.34.tar.bz2 #Checking source package file existance if [ ! -f httpd-2.4.34.tar.bz2 ]; then echo "Error: Can't find httpd-2.4.34.tar.bz2. Exiting!" exit fi #Checking source package file checksum if [ -f httpd-2.4.34.tar.bz2.md5sum ]; then MD5=`LANG=C md5sum -c httpd-2.4.34.tar.bz2.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of httpd-2.4.34.tar.bz2 is wrong. Exiting!" exit fi fi #Downloadning patches... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/patches/httpd-2.4.34-blfs_layout-1.patch #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/httpd/cleanup.time rm -rfv /sources/httpd-2.4.34/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/httpd/unpack.time #Extracting tar source package archive with default parameters... tar -xf httpd-2.4.34.tar.bz2 #Checking package directory size after unpack... du -s httpd-2.4.34 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/httpd/unpack.size #Going to source package directory... cd httpd-2.4.34 #Applying patches... patch -Np -i ../httpd-2.4.34-blfs_layout-1.patch #Saving configuration timestamp date +%s > /var/log/ulfs-packages/httpd/configure.time #Sleep 1 second sleep 1 #Running configuration script... groupadd -g 25 apache useradd -c "Apache Server" -d /srv/www -g apache \ -s /bin/false -u 25 apache sed '/dir.*CFG_PREFIX/s@^@#@' -i support/apxs.in ./configure --enable-authnz-fcgi \ --enable-layout=BLFS \ --enable-mods-shared="all cgi" \ --enable-mpms-shared=all \ --enable-suexec=shared \ --with-apr=/usr/bin/apr-1-config \ --with-apr-util=/usr/bin/apu-1-config \ --with-suexec-bin=/usr/lib/httpd/suexec \ --with-suexec-caller=apache \ --with-suexec-docroot=/srv/www \ --with-suexec-logfile=/var/log/httpd/suexec.log \ --with-suexec-uidmin=100 \ --with-suexec-userdir=public_htm #Saving build timestamp date +%s > /var/log/ulfs-packages/httpd/build.time #Running build script... make #Saving install timestamp date +%s > /var/log/ulfs-packages/httpd/install.time #Running install script... cat > ulfs_install.sh << EOIS make install && mv -v /usr/sbin/suexec /usr/lib/httpd/suexec && chgrp apache /usr/lib/httpd/suexec && chmod 4754 /usr/lib/httpd/suexec && chown -v -R apache:apache /srv/www EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/httpd/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/httpd/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/httpd/finish.time #Checking package directory size after unpack... cd /sources du -s httpd-2.4.34 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/httpd/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/httpd/files.txt ]; then rm /var/log/ulfs-packages/httpd/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt find /sbin -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt find /usr -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt find /etc -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt find /opt -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt find /lib -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt find /var -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time \! -path "/var/log/ulfs-packages/httpd/*" >> /var/log/ulfs-packages/httpd/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time >> /var/log/ulfs-packages/httpd/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/httpd/configure.time \! -newer /var/log/ulfs-packages/httpd/finish.time \! -path "/var/log/ulfs-packages/httpd/*" >> /var/log/ulfs-packages/httpd/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/httpd else sudo touch /var/cache/ulfs-packages/httpd fi #Calculate delta size a=`cat /var/log/ulfs-packages/httpd/unpack.size` b=`cat /var/log/ulfs-packages/httpd/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/httpd/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/httpd/start.time` b=`cat /var/log/ulfs-packages/httpd/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/httpd/download.time` b=`cat /var/log/ulfs-packages/httpd/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/httpd/configure.time` b=`cat /var/log/ulfs-packages/httpd/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/httpd/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: httpd" echo "Release: 0.1" echo "Build size: $c" echo "Prepare time: $dp sec." echo "Download time: $dd sec." echo "Build time: $db sec." #End of script