#!/bin/bash #=========================== # UMVIRT LINUX FROM SCRATCH #=========================== # Compilation script. # Network mode. #=========================== # Release: 0.1 # Package: gns3-server #=========================== # DB commit: d35a620850806ab581b32cb34d268a904c9c0a5f # APP commit: #=========================== echo "ULFS Package installation start" echo "===============================" echo "Package: gns3-server" 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/gns3-server/ #Saving start timestamp date +%s > /var/log/ulfs-packages/gns3-server/start.time #Going to source directory... cd /sources #Checking dependances... #Checking python3-jinja2... if [ ! -f /var/cache/ulfs-packages/python3-jinja2 ]; then echo "Dependance \"python3-jinja2\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-jinja2/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-jinja2 ]; then echo "Dependance \"python3-jinja2\" is not installed. Exiting..." exit fi fi #Checking python3-psutil... if [ ! -f /var/cache/ulfs-packages/python3-psutil ]; then echo "Dependance \"python3-psutil\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-psutil/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-psutil ]; then echo "Dependance \"python3-psutil\" is not installed. Exiting..." exit fi fi #Checking dynamips... if [ ! -f /var/cache/ulfs-packages/dynamips ]; then echo "Dependance \"dynamips\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/dynamips/install -O - | bash if [ ! -f /var/cache/ulfs-packages/dynamips ]; then echo "Dependance \"dynamips\" is not installed. Exiting..." exit fi fi #Checking ubridge... if [ ! -f /var/cache/ulfs-packages/ubridge ]; then echo "Dependance \"ubridge\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/ubridge/install -O - | bash if [ ! -f /var/cache/ulfs-packages/ubridge ]; then echo "Dependance \"ubridge\" is not installed. Exiting..." exit fi fi #Checking vpcs... if [ ! -f /var/cache/ulfs-packages/vpcs ]; then echo "Dependance \"vpcs\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/vpcs/install -O - | bash if [ ! -f /var/cache/ulfs-packages/vpcs ]; then echo "Dependance \"vpcs\" is not installed. Exiting..." exit fi fi #Checking python3-py-cpuinfo... if [ ! -f /var/cache/ulfs-packages/python3-py-cpuinfo ]; then echo "Dependance \"python3-py-cpuinfo\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-py-cpuinfo/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-py-cpuinfo ]; then echo "Dependance \"python3-py-cpuinfo\" is not installed. Exiting..." exit fi fi #Checking python3-distro... if [ ! -f /var/cache/ulfs-packages/python3-distro ]; then echo "Dependance \"python3-distro\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-distro/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-distro ]; then echo "Dependance \"python3-distro\" is not installed. Exiting..." exit fi fi #Checking python3-async-timeout... if [ ! -f /var/cache/ulfs-packages/python3-async-timeout ]; then echo "Dependance \"python3-async-timeout\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-async-timeout/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-async-timeout ]; then echo "Dependance \"python3-async-timeout\" is not installed. Exiting..." exit fi fi #Checking python3-sentry-sdk... if [ ! -f /var/cache/ulfs-packages/python3-sentry-sdk ]; then echo "Dependance \"python3-sentry-sdk\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-sentry-sdk/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-sentry-sdk ]; then echo "Dependance \"python3-sentry-sdk\" is not installed. Exiting..." exit fi fi #Checking python3-aiofiles... if [ ! -f /var/cache/ulfs-packages/python3-aiofiles ]; then echo "Dependance \"python3-aiofiles\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-aiofiles/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-aiofiles ]; then echo "Dependance \"python3-aiofiles\" is not installed. Exiting..." exit fi fi #Checking python3-aiohttp-cors... if [ ! -f /var/cache/ulfs-packages/python3-aiohttp-cors ]; then echo "Dependance \"python3-aiohttp-cors\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-aiohttp-cors/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-aiohttp-cors ]; then echo "Dependance \"python3-aiohttp-cors\" is not installed. Exiting..." exit fi fi #Checking python3-jsonschema... if [ ! -f /var/cache/ulfs-packages/python3-jsonschema ]; then echo "Dependance \"python3-jsonschema\" not found. Trying to install..."; wget --no-check-certificate https://ulfs.org/linux/packages//0.1/python3-jsonschema/install -O - | bash if [ ! -f /var/cache/ulfs-packages/python3-jsonschema ]; then echo "Dependance \"python3-jsonschema\" is not installed. Exiting..." exit fi fi #Saving downloading timestamp date +%s > /var/log/ulfs-packages/gns3-server/download.time #Downloading source package archive... wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/packages/g/gns3-server-2.2.16.tar.gz.md5sum wget --no-check-certificate -nc https://ulfs.org/linux/downloads/package_files/0.1/packages/g/gns3-server-2.2.16.tar.gz #Checking source package file existance if [ ! -f gns3-server-2.2.16.tar.gz ]; then echo "Error: Can't find gns3-server-2.2.16.tar.gz. Exiting!" exit fi #Checking source package file checksum if [ -f gns3-server-2.2.16.tar.gz.md5sum ]; then MD5=`LANG=C md5sum -c gns3-server-2.2.16.tar.gz.md5sum | grep OK` if [ "$MD5" == "" ] ; then echo "Error: Checksum of gns3-server-2.2.16.tar.gz is wrong. Exiting!" exit fi fi #Saving cleanup timestamp date +%s > /var/log/ulfs-packages/gns3-server/cleanup.time rm -rfv /sources/gns3-server-2.2.16/ #Saving extracting timestamp date +%s > /var/log/ulfs-packages/gns3-server/unpack.time #Extracting tar source package archive with default parameters... tar -xf gns3-server-2.2.16.tar.gz #Checking package directory size after unpack... du -s gns3-server-2.2.16 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gns3-server/unpack.size #Going to source package directory... cd gns3-server-2.2.16 #Saving configuration timestamp date +%s > /var/log/ulfs-packages/gns3-server/configure.time #Sleep 1 second sleep 1 #Running configuration script... sed -i "s/psutil==5.6.7/psutil==5.7.0/" requirements.txt #Saving build timestamp date +%s > /var/log/ulfs-packages/gns3-server/build.time #Running build script... python3 setup.py build #Saving install timestamp date +%s > /var/log/ulfs-packages/gns3-server/install.time #Running install script... cat > ulfs_install.sh << EOIS python3 setup.py install EOIS USER=`whoami` if [ "$USER" == "root" ] ; then cat ulfs_install.sh | bash 2>&1 | tee /var/log/ulfs-packages/gns3-server/install.log else cat ulfs_install.sh | sudo bash 2>&1 | tee /var/log/ulfs-packages/gns3-server/install.log fi #Saving finish timestamp date +%s > /var/log/ulfs-packages/gns3-server/finish.time #Checking package directory size after unpack... cd /sources du -s gns3-server-2.2.16 | awk 'NR==1 {print $1}' > /var/log/ulfs-packages/gns3-server/install.size echo "ULFS package installation completed." #Producing files list echo "Looking for installed files..." if [ -f /var/log/ulfs-packages/gns3-server/files.txt ]; then rm /var/log/ulfs-packages/gns3-server/files.txt fi USER=`whoami` if [ "$USER" == "root" ] ; then find /bin -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt find /sbin -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt find /usr -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt find /etc -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt find /opt -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt find /lib -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt find /lib64 -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt find /var -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time \! -path "/var/log/ulfs-packages/gns3-server/*" >> /var/log/ulfs-packages/gns3-server/files.txt else sudo find /bin -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt sudo find /sbin -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt sudo find /usr -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt sudo find /etc -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt sudo find /opt -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt sudo find /lib -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt sudo find /lib64 -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time >> /var/log/ulfs-packages/gns3-server/files.txt sudo find /var -type f -newer /var/log/ulfs-packages/gns3-server/configure.time \! -newer /var/log/ulfs-packages/gns3-server/finish.time \! -path "/var/log/ulfs-packages/gns3-server/*" >> /var/log/ulfs-packages/gns3-server/files.txt fi #Marking package as installed... mkdir -p /var/cache/ulfs-packages USER=`whoami` if [ "$USER" == "root" ] ; then touch /var/cache/ulfs-packages/gns3-server else sudo touch /var/cache/ulfs-packages/gns3-server fi #Calculate delta size a=`cat /var/log/ulfs-packages/gns3-server/unpack.size` b=`cat /var/log/ulfs-packages/gns3-server/install.size` c=$(($b-$a)) echo $c > /var/log/ulfs-packages/gns3-server/delta.size #Calculate prepare time a=`cat /var/log/ulfs-packages/gns3-server/start.time` b=`cat /var/log/ulfs-packages/gns3-server/configure.time` dp=$(($b-$a)) #Calculate download time a=`cat /var/log/ulfs-packages/gns3-server/download.time` b=`cat /var/log/ulfs-packages/gns3-server/unpack.time` dd=$(($b-$a)) #Calculate delta time a=`cat /var/log/ulfs-packages/gns3-server/configure.time` b=`cat /var/log/ulfs-packages/gns3-server/finish.time` db=$(($b-$a)) echo $db > /var/log/ulfs-packages/gns3-server/delta.time #Report echo "" echo "ULFS Package installation report" echo "================================" echo "Package: gns3-server" 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