#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.1 # Package: apache-ant #=========================== # DB commit: d35a620850806ab581b32cb34d268a904c9c0a5f # APP commit: 1ca4178aea919e4c9e869e3d650ff8af9678bd6f #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: apache-ant" 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/apache-ant/ #Saving start timestamp date +%s > /var/log/ulfs-packages/apache-ant/start.time #Going to source directory... cd /sources #Saving downloading timestamp date +%s > /var/log/ulfs-packages/apache-ant/download.time #Downloading source package archive... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/a/apache-ant-1.10.4-src.tar.xz.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/a/apache-ant-1.10.4-src.tar.xz #Checking source package file existance if [ ! -f apache-ant-1.10.4-src.tar.xz ]; then echo "Error: Can't find apache-ant-1.10.4-src.tar.xz. Exiting!" exit fi #Checking source package file checksum if [ -f apache-ant-1.10.4-src.tar.xz.md5sum ]; then MD5=`LANG=C md5sum -c apache-ant-1.10.4-src.tar.xz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of apache-ant-1.10.4-src.tar.xz is wrong. Exiting!" exit fi fi #Downloadning add-ons... #Downloadning add-on "NetRexx.zip"... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/n/NetRexx.zip.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/n/NetRexx.zip #Checking addon file existance if [ ! -f NetRexx.zip ]; then echo "Error: Can't find NetRexx.zip. Exiting!" exit fi #Checking add-on file checksum if [ -f NetRexx.zip.md5sum ]; then MD5=`LANG=C md5sum -c NetRexx.zip.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of NetRexx.zip is wrong. Exiting!" exit fi fi #Downloadning add-on "maven2-ant-1.10.4.tar.gz"... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/m/maven2-ant-1.10.4.tar.gz.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/m/maven2-ant-1.10.4.tar.gz #Checking addon file existance if [ ! -f maven2-ant-1.10.4.tar.gz ]; then echo "Error: Can't find maven2-ant-1.10.4.tar.gz. Exiting!" exit fi #Checking add-on file checksum if [ -f maven2-ant-1.10.4.tar.gz.md5sum ]; then MD5=`LANG=C md5sum -c maven2-ant-1.10.4.tar.gz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of maven2-ant-1.10.4.tar.gz is wrong. Exiting!" exit fi fi #Downloadning add-on "maven-ant-tasks-2.1.3.jar"... wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/m/maven-ant-tasks-2.1.3.jar.md5sum wget --no-check-certificate -nc https://umvirt.com/linux/downloads/0.1/packages/m/maven-ant-tasks-2.1.3.jar #Checking addon file existance if [ ! -f maven-ant-tasks-2.1.3.jar ]; then echo "Error: Can't find maven-ant-tasks-2.1.3.jar. Exiting!" exit fi #Checking add-on file checksum if [ -f maven-ant-tasks-2.1.3.jar.md5sum ]; then MD5=`LANG=C md5sum -c maven-ant-tasks-2.1.3.jar.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of maven-ant-tasks-2.1.3.jar is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/apache-ant/cleanup.time rm -rfv /sources/apache-ant-1.10.4/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/apache-ant/unpack.time #Extracting tar source package archive with default parameters... tar -xf apache-ant-1.10.4-src.tar.xz #Checking package directory size after unpack... du -s apache-ant-1.10.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/apache-ant/unpack.size #Going to source package directory... cd apache-ant-1.10.4 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/apache-ant/configure.time #Sleep 1 second sleep 1 #Running configuration script... sed -i 's/--add-modules java.activation/-html4/' build.xml #maven2 local repository tar -xf ../maven2-ant-1.10.4.tar.gz mkdir ~/.m2 mkdir ~/.m2/repository/ cp -rv maven2/* ~/.m2/repository/ #NetRexx.zip dependance mkdir ~/.ant mkdir ~/.ant/tempcache cp -v ../NetRexx.zip ~/.ant/tempcache cp -v ../maven-ant-tasks-2.1.3.jar lib/optional cd maven2 find -name *.pom -exec cp -v {} ../lib/optional \; find -name *.jar -exec cp -v {} ../lib/optional \; cd .. ./bootstrap.sh bootstrap/bin/ant -f fetch.xml -Ddest=optional #Saving build timestamp date +%s > /var/log/ulfs-packages/apache-ant/build.time #Running build script... ./build.sh -Ddist.dir=\$PWD/ant-1.10.4 dist #Saving install timestamp date +%s > /var/log/ulfs-packages/apache-ant/install.time #Running install script... cat > ulfs_install.sh << EOIS cp -rv ant-1.10.4 /opt/ && chown -R root:root /opt/ant-1.10.4 && ln -sfv ant-1.10.4 /opt/ant cat > /etc/profile.d/ant.sh << EOF # Begin /etc/profile.d/ant.sh pathappend /opt/ant/bin export ANT_HOME=/opt/ant # End /etc/profile.d/ant.sh EOF EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/apache-ant/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/apache-ant/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/apache-ant/finish.time #Checking package directory size after unpack... cd /sources du -s apache-ant-1.10.4 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/apache-ant/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/apache-ant/files.txt ]; then rm /var/log/ulfs-packages/apache-ant/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt find /sbin -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt find /usr -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt find /etc -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt find /opt -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt find /lib -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt find /var -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time \! -path "/var/log/ulfs-packages/apache-ant/*" >> /var/log/ulfs-packages/apache-ant/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time >> /var/log/ulfs-packages/apache-ant/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/apache-ant/configure.time \! -newer /var/log/ulfs-packages/apache-ant/finish.time \! -path "/var/log/ulfs-packages/apache-ant/*" >> /var/log/ulfs-packages/apache-ant/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/apache-ant else sudo touch /var/cache/ulfs-packages/apache-ant fi #Calculate delta size a=`cat /var/log/ulfs-packages/apache-ant/unpack.size` b=`cat /var/log/ulfs-packages/apache-ant/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/apache-ant/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/apache-ant/start.time` b=`cat /var/log/ulfs-packages/apache-ant/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/apache-ant/download.time` b=`cat /var/log/ulfs-packages/apache-ant/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/apache-ant/configure.time` b=`cat /var/log/ulfs-packages/apache-ant/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/apache-ant/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: apache-ant" 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