#!/bin/bash #@version 2.0.4 #@autor 6543@obermui.de #@date 2018-05-22 #@licence GNUv3 ##################################################################################### ################## F u n c t i o n s ################################################ ##################################################################################### #set functions [ -d "" ] || { echo "ERROR Librarys not found" exit 1 } #on_exit [error_level] source /func/on_exit #error_code [error_level] source /func/error_code #check_user source /func/check_user #check_dependency # -> 0 | -> 16 source /func/check_dependency #check_update source /func/check_update ### Workspace ### #workspace_erase [workspace_path] source /func/workspace_erase ### Filesystem ### #filesystem_extract [filesystem_img_source] [chroot_path] source /func/filesystem_extract #filesystem_pack [chroot_path] [filesystem_img_destination] source /func/filesystem_pack #filesystem_get_type [dir] #(String)-> ext4, ext2, btfs, fuse, ... source /func/filesystem_get_type ### ISO ### #iso_extract [iso_source] [iso_extr_dir] source /func/iso_extract #iso_create [chroot_path] [iso_extr_dir] [iso_aim] [iso_lable] source /func/iso_create ### chroot ### #chroot_initial [chroot_dir] source /func/chroot_initial #chroot_clean [chroot_dir] source /func/chroot_clean #chroot_umount [chroot_dir] source /func/chroot_umount #chroot_is_mounted [chroot_dir] #(Boolean)-> true | false source /func/chroot_is_mounted #chroot_sh [chroot_dir] [command] source /func/chroot_sh ### config ### #config_load [config] source /func/config_load #config_check source /func/config_check ##################################################################################### ################## S e t t i n g s ################################################## ##################################################################################### #read main setting if [ -f "/etc/remaster/config.cfg" ]; then config="/etc/remaster/config.cfg" else if [ -f "/etc/remaster/config.sample.cfg" ]; then config="/etc/remaster/config.sample.cfg" else echo "ERROR config not found" exit 1 fi fi #check LOG { export "`cat "$config" | grep ^[^#] | grep ^log_file= | cut -d "#" -f 1 | tr -d '"'`" [ -z "$log_file" ] && log_file="/tmp/remaster_`date '+%Y-%m-%d'`" if [ -f "$log_file" ]; then echo > "$log_file" else #check if folder exist [ -d "${log_file%/*}" ] || { # N-> exit 3 echo "Directory for Log didnt exist" exit 3 } #create LOG touch "$log_file" fi } ########################################################### ################# P r o c e s s ... ####################### ########################################################### ### Start LOG ### tail -f "$log_file" --pid="$$" & echo "Remaster LOG `date '+%Y-%m-%d'`" > "$log_file" echo >> "$log_file" ### S e t t i n g s ### config_load $config >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" echo $'\n\n' >> "$log_file" ### Enviroment ### echo "### Enviroment ###" >> "$log_file" chroot_path="`mktemp -d`" iso_extr_dir="`mktemp -d`" echo "iso_extr_dir=\"$iso_extr_dir\"" >> "$log_file" echo "chroot_path=\"$chroot_path\"" >> "$log_file" echo "HOST: `hostname`" >> "$log_file" #1. Set and Check Enviroment check_user >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" check_dependency >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" config_check >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" check_update >> "$log_file" ### R U N ... ### echo $'### R U N ... ###\n' >> "$log_file" # 2. Entpacke ISO iso_extract "$iso_source" "$iso_extr_dir" >> "$log_file" # 3. Entpacken der Dateien des Live-Systems filesystem_img="`find "$iso_extr_dir" -name filesystem.squashfs`" [ -e "$filesystem_img" ] || { echo "### ERROR ### Image \"$iso_source\" has no \"filesystem.squashfs\"" >> "$log_file" on_exit 15 >> "$log_file" } filesystem_extract "$filesystem_img" "$chroot_path" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" # 4. Vorbereiten für chroot-Umgebung: chroot_initial "$chroot_path" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" # 5. Setzen der Netzwerk-Einstellungen: [ -n "$proxy_host" ] && { proxy_enable "$chroot_path" "$proxy_host" "$proxy_port" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" } dns_set "$chroot_path" "$domain" "$nameserver" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" # 6. Updaten von Desinfec't: os_update "$chroot_path" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" # 7. Installation optionaler Tools: tools_add "$chroot_path" "$tools_list" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" #addo ClamAV to conky_info sed -i 's/# ${color white}ClamAV/ ${color white}ClamAV/g' "$chroot_path/etc/skel/.conkyrc" chroot_clean "$chroot_path" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" # 8. Manuelle Aktionen - deaktiviert #echo "Now You Have TIME to do something MANUALY!" #echo "enter in shell: #> chroot $chroot_path /bin/bash" #chroot $chroot_path /bin/bash #echo "Are You Finisch? Then Press [ENTER]" project_mods # 9. Umount - Chroot Umgebung auflösen chroot_umount "$chroot_path" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" #Überprüfen ob alles ausgehängt wurde [ "`chroot_is_mounted "$chroot_path"`" == "true" ] && { echo "### ERROR ### Cant Unmount Chroot!" >> "$log_file" on_exit 21 >> "$log_file" } # 10. Packen und Ersetzen der Dateien des Live-Systems rm "$filesystem_img" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" filesystem_pack "$chroot_path" "$filesystem_img" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" # wenn iso gewünscht [ "$iso_aim" != "" ] && { iso_create "$chroot_path" "$iso_extr_dir" "$iso_aim" "$iso_lable" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" } # wenn filesystem gewünscht [ "$squashfs_path" != "" ] && { #wen bereits forhanden dann löschen [ -f "$squashfs_path" ] && rm "$squashfs_path" cp "$filesystem_img" "$squashfs_path" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" chmod 666 "$squashfs_path" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" } chmod 666 "$iso_aim" "$filesystem_img" >> "$log_file" workspace_erase "$iso_extr_dir/" "$chroot_path/" >> "$log_file" error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file" on_exit 0