remaster/src/remaster.sh

576 lines
18 KiB
Bash
Raw Normal View History

2017-02-03 17:36:16 +00:00
#!/bin/bash
2018-05-20 21:29:33 +00:00
#@version 2.0.3
2018-04-26 11:04:35 +00:00
#@autor 6543@obermui.de
2018-05-20 18:32:55 +00:00
#@date 2018-05-20
2018-04-26 11:04:35 +00:00
#@licence GNUv3
2017-02-03 17:36:16 +00:00
2018-03-26 12:44:52 +00:00
#####################################################################################
################## S e t t i n g s ##################################################
#####################################################################################
2018-04-26 18:58:19 +00:00
#set functions
2018-05-06 17:26:21 +00:00
[ -d "<LIBDIR>" ] || {
2018-05-06 23:30:50 +00:00
echo "ERROR Librarys not found"
2018-05-06 17:31:13 +00:00
exit 1
2018-05-06 17:26:21 +00:00
}
2018-04-26 18:58:19 +00:00
#read main setting
2018-05-10 20:47:24 +00:00
if [ -f "<ROOTDIR>/etc/remaster/config.cfg" ]; then
2018-05-06 17:31:13 +00:00
source "<ROOTDIR>/etc/remaster/config.cfg"
2018-04-26 18:58:19 +00:00
else
2018-05-10 20:47:24 +00:00
if [ -f "<ROOTDIR>/etc/remaster/config.sample.cfg" ]; then
2018-05-06 17:31:13 +00:00
source "<ROOTDIR>/etc/remaster/config.sample.cfg"
else
echo "ERROR config not found"
exit 1
fi
2018-04-26 18:58:19 +00:00
fi
2018-05-20 20:43:33 +00:00
#check LOG
{
[ -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
}
2017-02-03 17:36:16 +00:00
2018-03-26 12:44:52 +00:00
#####################################################################################
################## M o d e s ########################################################
#####################################################################################
2017-02-03 17:36:16 +00:00
2018-03-26 12:50:34 +00:00
#remaster.sh renew
2018-03-26 12:47:46 +00:00
function main_renew() {
2018-05-20 20:43:33 +00:00
#Start LOG
2018-05-06 17:31:13 +00:00
tail -f "$log_file" --pid="$$" &
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
chroot_path="`mktemp -d`"
iso_extr_dir="`mktemp -d`"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "Remaster LOG `date '+%Y-%m-%d'`" > "$log_file"
echo "MODE: renew" >> "$log_file"
echo "HOST: `hostname`" >> "$log_file"
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "### S e t t i n g s ###" >> "$log_file"
echo "#CD/DVD" >> "$log_file"
echo "iso_source=\"$iso_source\"" >> "$log_file"
2018-05-20 22:25:27 +00:00
echo "iso_aim=\"$iso_aim\"" >> "$log_file"
2018-05-06 17:31:13 +00:00
echo "iso_lable=\"$iso_lable\"" >> "$log_file"
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "#Filesystem (for pxe)" >> "$log_file"
2018-05-20 22:25:27 +00:00
echo "squashfs_path=\"$squashfs_path\"" >> "$log_file"
2018-05-06 17:31:13 +00:00
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "#Network" >> "$log_file"
echo "proxy_host=\"$proxy_host\"" >> "$log_file"
echo "proxy_port=\"$proxy_port\"" >> "$log_file"
echo "domain=\"$domain\"" >> "$log_file"
echo "nameserver=\"$nameserver\"" >> "$log_file"
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "#remaster_script" >> "$log_file"
2018-05-20 22:25:27 +00:00
echo "project=\"$project\"" >> "$log_file"
2018-05-06 17:31:13 +00:00
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "log_file=\"$log_file\""
echo "log_mail_aim=\"$log_mail_aim\""
2018-05-21 10:07:47 +00:00
echo "log_mail_subject=\"$log_mail_subj >> "$log_file"ect\""
2018-05-06 17:31:13 +00:00
echo ""
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "#Sonstiges" >> "$log_file"
echo "tools_list=\"$tools_list\"" >> "$log_file"
echo $'\n' >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "### Enviroment ###"
echo "iso_extr_dir=\"$iso_extr_dir\"" >> "$log_file"
echo "chroot_path=\"$chroot_path\"" >> "$log_file"
#env >> "$log_file"
echo $'\n\n' >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo $'### R U N ... ###\n' >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
#1. Set and Check Enviroment
2018-05-21 10:07:47 +00:00
check_user >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2018-03-26 12:48:41 +00:00
2018-05-21 10:07:47 +00:00
check_dependency >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-20 21:44:26 +00:00
check_config >> "$log_file"
2018-05-20 20:43:33 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2018-05-20 21:44:26 +00:00
check_update >> "$log_file"
2018-05-12 22:02:09 +00:00
2018-05-06 17:31:13 +00:00
# 2. Entpacke ISO
2018-05-21 10:07:47 +00:00
iso_extract "$iso_source" "$iso_extr_dir" >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 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"
}
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
filesystem_extract "$filesystem_img" "$chroot_path" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 4. Vorbereiten für chroot-Umgebung:
2017-02-03 17:36:16 +00:00
2018-05-21 22:46:31 +00:00
chroot_initial "$chroot_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 5. Setzen der Netzwerk-Einstellungen:
2018-05-20 09:59:47 +00:00
[ -n "$proxy_host" ] && {
2018-05-21 22:46:31 +00:00
proxy_enable "$chroot_path" "$proxy_host" "$proxy_port" >> "$log_file"
2018-05-20 09:59:47 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
}
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
dns_set "$chroot_path" "$domain" "$nameserver" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 6. Updaten von Desinfec't:
2018-05-21 22:46:31 +00:00
os_update "$chroot_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 7. Installation optionaler Tools:
2017-02-03 17:36:16 +00:00
2018-05-21 22:46:31 +00:00
tools_add "$chroot_path" "$tools_list" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
#addo ClamAV to conky_info
sed -i 's/# ${color white}ClamAV/ ${color white}ClamAV/g' "$chroot_path/etc/skel/.conkyrc"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
chroot_clean "$chroot_path" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2018-03-26 12:41:51 +00:00
2018-05-06 17:31:13 +00:00
# 8. Manuelle Aktionen - deaktiviert
2018-03-26 12:41:51 +00:00
2018-05-06 17:31:13 +00:00
#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]"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
#config xrdp to start xfce
echo '#!/bin/sh' > "$chroot_path"/etc/xrdp/startwm.sh
echo "export LANG=\"de_DE.UTF-8\"" >> "$chroot_path"/etc/xrdp/startwm.sh
echo "startxfce4" >> "$chroot_path"/etc/xrdp/startwm.sh
2018-04-27 12:01:08 +00:00
2018-05-06 17:31:13 +00:00
# 9. Umount - Chroot Umgebung auflösen
2017-02-03 17:36:16 +00:00
2018-05-21 22:46:31 +00:00
chroot_umount "$chroot_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
#Ü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"
}
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 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"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
filesystem_pack "$chroot_path" "$filesystem_img" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# wenn iso gewünscht
2018-05-20 22:25:27 +00:00
[ "$iso_aim" != "" ] && {
2018-05-21 22:46:31 +00:00
iso_create "$chroot_path" "$iso_extr_dir" "$iso_aim" "$iso_lable" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
}
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# wenn filesystem gewünscht
2018-05-20 22:25:27 +00:00
[ "$squashfs_path" != "" ] && {
2018-05-06 17:31:13 +00:00
#wen bereits forhanden dann löschen
2018-05-20 22:25:27 +00:00
[ -f "$squashfs_path" ] && rm "$squashfs_path"
cp "$filesystem_img" "$squashfs_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-20 22:25:27 +00:00
chmod 666 "$squashfs_path"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
}
2017-02-03 17:36:16 +00:00
2018-05-20 22:25:27 +00:00
chmod 666 "$iso_aim" "$filesystem_img" >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
workspace_erase "$iso_extr_dir/" "$chroot_path/" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
on_exit 0
2018-03-26 12:44:52 +00:00
}
2017-02-03 17:36:16 +00:00
2018-03-26 12:52:46 +00:00
#remaster.sh update_pxe
function main_update_pxe() {
2017-02-03 17:36:16 +00:00
2018-05-20 20:43:33 +00:00
#Start LOG
2018-05-06 17:31:13 +00:00
tail -f "$log_file" --pid="$$" &
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
chroot_path="`mktemp -d`"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "Remaster LOG `date '+%Y-%m-%d'`" > "$log_file"
echo "MODE: update_pxe" >> "$log_file"
echo "HOST: `hostname`" >> "$log_file"
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "### S e t t i n g s ###" >> "$log_file"
echo "#Filesystem (for pxe)" >> "$log_file"
2018-05-20 22:25:27 +00:00
echo "squashfs_path=\"$squashfs_path\""
2018-05-06 17:31:13 +00:00
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "#Network" >> "$log_file"
echo "domain=\"$domain\"" >> "$log_file"
echo "nameserver=\"$nameserver\"" >> "$log_file"
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "#remaster_script" >> "$log_file"
2018-05-20 22:25:27 +00:00
echo "project=\"$project\"" >> "$log_file"
2018-05-06 17:31:13 +00:00
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "log_file=\"$log_file\""
echo "log_mail_aim=\"$log_mail_aim\""
echo "log_mail_subject=\"$log_mail_subject\""
echo ""
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "#Sonstiges" >> "$log_file"
echo "tools_list=\"$tools_list\"" >> "$log_file"
echo $'\n' >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "### Enviroment ###"
echo "chroot_path=\"$chroot_path\"" >> "$log_file"
#env >> "$log_file"
echo $'\n\n' >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo $'### R U N ... ###\n' >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
#1. Set and Check Enviroment
2018-05-21 10:07:47 +00:00
check_user >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2018-03-26 12:48:41 +00:00
2018-05-20 21:44:26 +00:00
check_update >> "$log_file"
2018-05-12 22:02:09 +00:00
2018-05-21 10:07:47 +00:00
check_dependency >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-20 21:44:26 +00:00
check_config >> "$log_file"
2018-05-20 20:43:33 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2018-05-06 17:31:13 +00:00
# 1. Entpacken der Dateien des Live-Systems
2018-05-20 22:25:27 +00:00
[ -e "$squashfs_path" ] || {
echo "### ERROR ### \"$squashfs_path\" does not exist!" >> "$log_file"
2018-05-06 17:31:13 +00:00
on_exit 15 >> "$log_file"
}
2017-02-03 17:36:16 +00:00
2018-05-20 22:25:27 +00:00
filesystem_extract "$squashfs_path" "$chroot_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 2. Vorbereiten für chroot-Umgebung:
2017-02-03 17:36:16 +00:00
2018-05-21 22:46:31 +00:00
chroot_initial "$chroot_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 3. Setzen der Netzwerk-Einstellungen:
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
dns_set "$chroot_path" "$domain" "$nameserver" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 4. Updaten von Desinfec't:
2018-05-21 22:46:31 +00:00
os_update "$chroot_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 5. Manuelle Aktionen - deaktiviert
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "Now You Have TIME to do something MANUALY!"
#echo "enter in shell:
chroot $chroot_path /bin/bash
#echo "Are You Finisch? Then Press [ENTER]"
#read
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 6. Umount - Chroot Umgebung auflösen
2017-02-03 17:36:16 +00:00
2018-05-21 22:46:31 +00:00
chroot_umount "$chroot_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
#Ü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"
}
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 5. Packen und Ersetzen der Dateien
2018-05-20 22:25:27 +00:00
rm "$squashfs_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-20 22:25:27 +00:00
filesystem_pack "$chroot_path" "$squashfs_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-20 22:25:27 +00:00
chmod 777 "$squashfs_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
workspace_erase "$chroot_path/" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
on_exit 0
2017-02-03 17:36:16 +00:00
}
2018-03-26 12:52:46 +00:00
#remaster.sh update_iso #in arbeit
function main_update_iso() {
2018-05-20 20:43:33 +00:00
#Start LOG
2018-05-06 17:31:13 +00:00
tail -f "$log_file" --pid="$$" &
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
chroot_path="`mktemp -d`"
iso_extr_dir="`mktemp -d`"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "Remaster LOG `date '+%Y-%m-%d'`" > "$log_file"
echo "MODE: update_iso" >> "$log_file"
echo "HOST: `hostname`" >> "$log_file"
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "### S e t t i n g s ###" >> "$log_file"
echo "#CD/DVD" >> "$log_file"
echo "iso_source=\"$iso_source\"" >> "$log_file"
2018-05-20 22:25:27 +00:00
echo "iso_aim=\"$iso_aim\"" >> "$log_file"
2018-05-06 17:31:13 +00:00
echo "iso_lable=\"$iso_lable\"" >> "$log_file"
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "#Filesystem (for pxe)" >> "$log_file"
2018-05-20 22:25:27 +00:00
echo "squashfs_path=\"$squashfs_path\"" >> "$log_file"
2018-05-06 17:31:13 +00:00
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "#Network" >> "$log_file"
echo "proxy_host=\"$proxy_host\"" >> "$log_file"
echo "proxy_port=\"$proxy_port\"" >> "$log_file"
echo "domain=\"$domain\"" >> "$log_file"
echo "nameserver=\"$nameserver\"" >> "$log_file"
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "#remaster_script" >> "$log_file"
2018-05-20 22:25:27 +00:00
echo "project=\"$project\"" >> "$log_file"
2018-05-06 17:31:13 +00:00
echo >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "log_file=\"$log_file\""
echo "log_mail_aim=\"$log_mail_aim\""
echo "log_mail_subject=\"$log_mail_subject\""
echo ""
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "#Sonstiges" >> "$log_file"
echo "tools_list=\"$tools_list\"" >> "$log_file"
echo $'\n' >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo "### Enviroment ###"
echo "iso_extr_dir=\"$iso_extr_dir\"" >> "$log_file"
echo "chroot_path=\"$chroot_path\"" >> "$log_file"
#env >> "$log_file"
echo $'\n\n' >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
echo $'### R U N ... ###\n' >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
#1. Set and Check Enviroment
2018-05-21 10:07:47 +00:00
check_user >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2018-03-26 12:48:41 +00:00
2018-05-20 21:44:26 +00:00
check_update >> "$log_file"
2018-05-12 22:02:09 +00:00
2018-05-21 10:07:47 +00:00
check_dependency >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-20 21:44:26 +00:00
check_config >> "$log_file"
2018-05-20 20:43:33 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2018-05-06 17:31:13 +00:00
# 2. Entpacke ISO
2018-05-21 10:07:47 +00:00
iso_extract "$iso_source" "$iso_extr_dir" >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 3. Checke pxe version
# if pxe is set
# if (date != date ); then $0 update_pxe #4.1
# filesystem = update #4.2
# else
# extrakt filesystem #5.
# update #6.
# done
# pack iso
2018-03-26 12:52:46 +00:00
2018-05-06 17:31:13 +00:00
# 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"
}
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
filesystem_extract "$filesystem_img" "$chroot_path" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 4. Vorbereiten für chroot-Umgebung:
2017-02-03 17:36:16 +00:00
2018-05-21 22:46:31 +00:00
chroot_initial "$chroot_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 5. Setzen der Netzwerk-Einstellungen:
2018-05-20 09:59:47 +00:00
[ -n "$proxy_host" ] && {
2018-05-21 22:46:31 +00:00
proxy_enable "$chroot_path" "$proxy_host" "$proxy_port" >> "$log_file"
2018-05-20 09:59:47 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
}
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
dns_set "$chroot_path" "$domain" "$nameserver" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 6. Updaten von Desinfec't:
2018-05-21 22:46:31 +00:00
os_update "$chroot_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 7. Installation optionaler Tools:
2017-02-03 17:36:16 +00:00
2018-05-21 22:46:31 +00:00
tools_add "$chroot_path" "$tools_list" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
#addo ClamAV to conky_info
sed -i 's/# ${color white}ClamAV/ ${color white}ClamAV/g' "$chroot_path/etc/skel/.conkyrc"
2018-03-26 12:47:46 +00:00
2018-05-06 17:31:13 +00:00
chroot_clean "$chroot_path" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 8. Manuelle Aktionen - deaktiviert
2018-03-26 12:47:46 +00:00
2018-05-06 17:31:13 +00:00
#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]"
2018-03-26 12:47:46 +00:00
2018-05-06 17:31:13 +00:00
# 9. Umount - Chroot Umgebung auflösen
2017-02-03 17:36:16 +00:00
2018-05-21 22:46:31 +00:00
chroot_umount "$chroot_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
#Ü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"
}
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# 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"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
filesystem_pack "$chroot_path" "$filesystem_img" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# wenn iso gewünscht
2018-05-20 22:25:27 +00:00
[ "$iso_aim" != "" ] && {
2018-05-21 22:46:31 +00:00
iso_create "$chroot_path" "$iso_extr_dir" "$iso_aim" "$iso_lable" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
}
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
# wenn filesystem gewünscht
2018-05-20 22:25:27 +00:00
[ "$squashfs_path" != "" ] && {
2018-05-06 17:31:13 +00:00
#wen bereits forhanden dann löschen
2018-05-20 22:25:27 +00:00
[ -f "$squashfs_path" ] && rm "$squashfs_path"
cp "$filesystem_img" "$squashfs_path" >> "$log_file"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-20 22:25:27 +00:00
chmod 666 "$squashfs_path"
2018-05-06 17:31:13 +00:00
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
}
2017-02-03 17:36:16 +00:00
2018-05-20 22:25:27 +00:00
chmod 666 "$iso_aim" "$filesystem_img" >> "$log_file"
2017-02-03 17:36:16 +00:00
2018-05-06 17:31:13 +00:00
#11. End
workspace_erase "$iso_extr_dir/" "$chroot_path/" >> "$log_file"
error_level="$?"; [ "$error_level" != "0" ] && on_exit $error_level >> "$log_file"
2018-03-26 12:47:46 +00:00
2018-05-06 17:31:13 +00:00
on_exit 0
2018-03-26 12:47:46 +00:00
}
2018-03-26 12:44:52 +00:00
#####################################################################################
################## F u n c t i o n s ################################################
#####################################################################################
2017-02-03 17:36:16 +00:00
2018-03-26 12:44:52 +00:00
### Error Handlings ###
2017-02-03 17:36:16 +00:00
2018-05-20 21:44:26 +00:00
#check_config
2018-05-20 21:04:52 +00:00
source <LIBDIR>/func/check_config
2018-03-26 12:44:52 +00:00
#on_exit [error_level]
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/on_exit
2017-02-03 17:36:16 +00:00
2018-03-26 12:44:52 +00:00
#error_code [error_level]
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/error_code
2017-02-03 17:36:16 +00:00
2018-03-26 12:48:41 +00:00
#check_user
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/check_user
2018-03-26 12:48:41 +00:00
#check_dependency
# -> 0 | -> 16
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/check_dependency
2018-03-26 12:48:41 +00:00
2018-05-20 10:24:51 +00:00
#check_update
source <LIBDIR>/func/check_update
2018-03-26 12:48:41 +00:00
2017-02-03 17:36:16 +00:00
### Workspace ###
#workspace_erase [workspace_path]
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/workspace_erase
2017-02-03 17:36:16 +00:00
### Filesystem ###
#filesystem_extract [filesystem_img_source] [chroot_path]
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/filesystem_extract
2017-02-03 17:36:16 +00:00
#filesystem_pack [chroot_path] [filesystem_img_destination]
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/filesystem_pack
2017-02-03 17:36:16 +00:00
#filesystem_get_type [dir]
#(String)-> ext4, ext2, btfs, fuse, ...
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/filesystem_get_type
2017-02-03 17:36:16 +00:00
### ISO ###
#iso_extract [iso_source] [iso_extr_dir]
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/iso_extract
2017-02-03 17:36:16 +00:00
2018-05-20 22:25:27 +00:00
#iso_create [chroot_path] [iso_extr_dir] [iso_aim] [iso_lable]
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/iso_create
2017-02-03 17:36:16 +00:00
### chroot ###
#chroot_initial [chroot_dir]
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/chroot_initial
2017-02-03 17:36:16 +00:00
#chroot_clean [chroot_dir]
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/chroot_clean
2017-02-03 17:36:16 +00:00
#chroot_umount [chroot_dir]
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/chroot_umount
2017-02-03 17:36:16 +00:00
#chroot_is_mounted [chroot_dir]
#(Boolean)-> true | false
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/chroot_is_mounted
2017-02-03 17:36:16 +00:00
2018-03-26 12:52:46 +00:00
#chroot_sh [chroot_dir] [command]
2018-05-06 17:26:21 +00:00
source <LIBDIR>/func/chroot_sh
2018-03-26 12:52:46 +00:00
2018-05-21 22:46:31 +00:00
####################################
### Workaround - set Project
2018-05-06 17:26:21 +00:00
source <LIBDIR>/proj/desinfect.17
2018-05-21 22:46:31 +00:00
####################################
2018-03-26 12:41:51 +00:00
2017-02-03 17:36:16 +00:00
### Handle Parameters & Modes ###
2018-03-26 12:44:52 +00:00
#wenn kein modus angegebnen: default modus
2017-02-03 17:36:16 +00:00
if [ -z "$1" ]; then
2018-05-06 17:31:13 +00:00
main_$modus_default
2017-02-03 17:36:16 +00:00
else
2018-05-06 17:31:13 +00:00
main_$1 $2 $3 $4 $5 $6 $7 $8 $9
2017-02-03 17:36:16 +00:00
fi