]> Frank Brehm's Git Trees - pixelpark/create-vmware-tpl.git/commitdiff
Adding Gitlab job log sections
authorFrank Brehm <frank.brehm@pixelpark.com>
Fri, 7 Jan 2022 12:54:48 +0000 (13:54 +0100)
committerFrank Brehm <frank.brehm@pixelpark.com>
Fri, 7 Jan 2022 12:54:48 +0000 (13:54 +0100)
27 files changed:
snippets/tpl.040.network.sh
snippets/tpl.060.tweak_systemd.sh
snippets/tpl.070.tweak_grub.sh
snippets/tpl.075.tmp-tmpfs.sh
snippets/tpl.080.rsyslogd-el7.sh
snippets/tpl.080.rsyslogd-el8.sh
snippets/tpl.100.clear_repos.sh
snippets/tpl.170.repos_centos7.sh
snippets/tpl.170.repos_el7.sh
snippets/tpl.170.repos_oel7.sh
snippets/tpl.200.init-repos.sh
snippets/tpl.205.bashrc-el7.sh
snippets/tpl.210.bashrc-centos8.sh
snippets/tpl.220.locales-centos8.sh
snippets/tpl.225.vimrc-el7.sh
snippets/tpl.230.vimrc-centos8.sh
snippets/tpl.240.pkgs-el7.sh
snippets/tpl.250.pkgs-centos8.sh
snippets/tpl.270.remove-uek.sh
snippets/tpl.280.dist-upgrade.sh
snippets/tpl.300.create-motd.sh
snippets/tpl.320.root-ssh-login.sh
snippets/tpl.350.legato.sh
snippets/tpl.400.chrony.sh
snippets/tpl.450.puppet.sh
snippets/tpl.470.postfix.sh
snippets/tpl.500.logrotate.sh

index 34fe130f89757f6feb98693ad8d33f3a4183baef..12ea0fe71b2f2c99204f4b61f9af913bc1827fa1 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 create_networkconfig() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_create_networkconfig[collapsed=true]\r\e[0KGenerating network configuration ..."
     echo
     echo "${HASH_LINE}"
     echo
@@ -68,6 +69,7 @@ create_networkconfig() {
     echo "Inhalt von /etc/sysconfig/network-scripts ..."
     ls -lA /etc/sysconfig/network-scripts
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_create_networkconfig\r\e[0K"
 }
 
 create_networkconfig
index 06f37a8a27e65eb1c3cea66990bb9a63aee6e80a..abafd7397cb221eae9ce5b46623daf2ed2e3fc0c 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 tweak_systemd() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_tweak_systemd[collapsed=true]\r\e[0KTweaking systemd ..."
     echo
     echo "${HASH_LINE}"
     echo
@@ -28,6 +29,7 @@ tweak_systemd() {
         ln -sv "${getty_svc}" "${glink}"
     done
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_tweak_systemd\r\e[0K"
 }
 tweak_systemd
 
index 5d0b629ca3e997583edf4ae496c943986dc03338..06b924af7dbcd7afc296f47ed130968a58763cea 100644 (file)
@@ -7,6 +7,7 @@ tweak_grub() {
     local grub_cfg="/etc/default/grub"
     if [[ -f "${grub_cfg}" ]] ; then
 
+        echo -e "\e[0Ksection_start:$( date +%s ):ks_tweak_grub[collapsed=true]\r\e[0KTweaking grub ..."
         echo
         echo "${HASH_LINE}"
         echo
@@ -26,6 +27,7 @@ tweak_grub() {
         echo "Recreating /boot/grub2/grub.cfg ..."
         grub2-mkconfig -o /boot/grub2/grub.cfg
 
+        echo -e "\e[0Ksection_end:$( date +%s ):ks_tweak_grub\r\e[0K"
     fi
 
 }
index ff8ae008f8c0c14a5f46b12250b0fed1490a7651..f0d54e20a4c40133acfce1a8a16a90d77fe946c6 100644 (file)
@@ -7,6 +7,7 @@ setup_tmp_tmpfs() {
     local fstab="/etc/fstab"
     if [[ -f "${fstab}" ]] ; then
 
+        echo -e "\e[0Ksection_start:$( date +%s ):ks_setup_tmp_tmpfs[collapsed=true]\r\e[0KSetting up /tmp as a tmpfs ..."
         echo
         echo "${HASH_LINE}"
         echo
@@ -14,6 +15,7 @@ setup_tmp_tmpfs() {
 
         echo 'tmpfs    /tmp    tmpfs   nosuid,size=10% 0       0' >>"${fstab}"
 
+        echo -e "\e[0Ksection_end:$( date +%s ):ks_setup_tmp_tmpfs\r\e[0K"
     fi
 
 }
index b7b8430f7f72e1f54bce3dad83cd0aa373064bcc..7e4bb6a79e71f83bbcb84fb0e550a1d61e4d4d2a 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 set_rsyslogd_el7() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_set_rsyslogd_el7[collapsed=true]\r\e[0KConfiguring Rsyslogd ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling set_rsyslogd_el7() ..."
@@ -53,6 +54,7 @@ set_rsyslogd_el7() {
     echo
     ls -l /etc/rsyslog.conf* /etc/rsyslog.d/*
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_set_rsyslogd_el7\r\e[0K"
 }
 
 set_rsyslogd_el7
index 30d30d4cb69e7e3dcb5645b2b614157f7c520f10..90dfb2ce9e67c54f3d64cda9eabf4aa7839f84ee 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 set_rsyslogd_el8() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_set_rsyslogd_el8[collapsed=true]\r\e[0KConfiguring Rsyslogd ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling set_rsyslogd_el8() ..."
@@ -53,6 +54,7 @@ set_rsyslogd_el8() {
     echo
     ls -l /etc/rsyslog.conf* /etc/rsyslog.d/*
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_set_rsyslogd_el8\r\e[0K"
 }
 
 set_rsyslogd_el8
index a638d2c1938f0d7a620e65f759ee9454c8ba0b16..4468a37963a9ac91178909f5f1973c7508e4cfbc 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 clear_all_repo_files() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_clear_all_repo_files[collapsed=true]\r\e[0KCleaning all exiting repo files ..."
     echo
     echo "${HASH_LINE}"
     echo
@@ -24,6 +25,7 @@ clear_all_repo_files() {
         cp -v /dev/null "${repo_file}"
     done
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_clear_all_repo_files\r\e[0K"
 }
 clear_all_repo_files
 
index 9db7076b692c7e98609d09a83ea449e0b931c8f6..51baddf21dfa6baa2525c74326e9a22583bc27d0 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 get_repos_centos7() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_get_repos_centos7[collapsed=true]\r\e[0KGet yum repository files ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling get_repos_centos7() ..."
@@ -26,6 +27,7 @@ get_repos_centos7() {
         rm -fv "${tmp_file}"
     done
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_get_repos_centos7\r\e[0K"
 }
 get_repos_centos7
 
index cb800a386ed34e47cc9d90970163170f325d46a8..48ab4a174529c26151aa010b54e52dffd783be84 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 get_repos_el7() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_get_repos_el7[collapsed=true]\r\e[0KGet yum repository files ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling get_repos_el7() ..."
@@ -26,6 +27,7 @@ get_repos_el7() {
         rm -fv "${tmp_file}"
     done
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_get_repos_el7\r\e[0K"
 }
 get_repos_el7
 
index 1ceb136ccae4d224af62487fc6f0f605d35d168d..3b1dcadfc437c44638044506452669c49cca35b6 100644 (file)
@@ -2,11 +2,12 @@
 #raw
 
 #-----------------------------------------------------------
-get_repos_centos7() {
+get_repos_oel7() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_get_repos_oel7[collapsed=true]\r\e[0KGet yum repository files ..."
     echo
     echo "${HASH_LINE}"
-    echo "Calling get_repos_centos7() ..."
+    echo "Calling get_repos_oel7() ..."
     echo
     local base_url="${COBBLER_URL}/${ws_rel_filesdir}/${system_status}/repos/oel7"
 
@@ -26,7 +27,8 @@ get_repos_centos7() {
         rm -fv "${tmp_file}"
     done
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_get_repos_oel7\r\e[0K"
 }
-get_repos_centos7
+get_repos_oel7
 
 #end raw
index 6cd9863d9505d861a67ad535f2edc249d6bca10d..0d5ad7695da80423c1ff15d32936584edbb5fcb7 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 init_yum_repos() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_init_yum_repos[collapsed=true]\r\e[0KInit yum repositories ..."
     echo
     echo "${HASH_LINE}"
     echo
@@ -12,6 +13,7 @@ init_yum_repos() {
     yum clean all
     yum makecache
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_init_yum_repos\r\e[0K"
 }
 
 init_yum_repos
index 7ea934ee813da7045d11a609907b04385a293aaa..37e7c2bbfcefc70ea393ac1ce10cc1fb969dae43 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 set_bashrc_el7() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_set_bashrc_el7[collapsed=true]\r\e[0KRewriting /etc/bashrc ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling set_bashrc_el7() ..."
@@ -30,6 +31,7 @@ set_bashrc_el7() {
         echo "[$(date)]: Could not install bash-completion" | tee -a "${ERROR_POINTER}"
     fi
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_set_bashrc_el7\r\e[0K"
 }
 
 set_bashrc_el7
index 9c8ef4d9f41d60fbfd02c71c034611b1421d676b..d2dd3a308503c660de22e79d81e3e248e99e493c 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 set_bashrc_centos8() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_set_bashrc_centos8[collapsed=true]\r\e[0KRewriting /etc/bashrc ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling set_bashrc_centos8() ..."
@@ -30,6 +31,7 @@ set_bashrc_centos8() {
         echo "[$(date)]: Could not install bash-completion" | tee -a "${ERROR_POINTER}"
     fi
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_set_bashrc_centos8\r\e[0K"
 }
 
 set_bashrc_centos8
index 0e36f852ca6d1290e7f43856c8dbec8c8ad579ec..5b66d39cc84ee08636f2e906df54ac955fe99e6e 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 set_locales_centos8() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_set_locales_centos8[collapsed=true]\r\e[0KInstalling german locales ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling set_locales_centos8() ..."
@@ -16,6 +17,7 @@ set_locales_centos8() {
         echo "[$(date)]: Could not install german locales (langpacks-de)" | tee -a "${ERROR_POINTER}"
     fi
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_set_locales_centos8\r\e[0K"
 }
 
 set_locales_centos8
index 4cc15c06a036597701c817f81e126e00bb75a3ee..34929b439e8b6fdfbbad7fb1739de992f6e6c337 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 set_vimrc_el7() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_set_vimrc_el7[collapsed=true]\r\e[0KRewriting /etc/vimrc ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling set_vimrc_el7() ..."
@@ -22,6 +23,7 @@ set_vimrc_el7() {
     fi
     rm -fv "${tmp_file}"
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_set_vimrc_el7\r\e[0K"
 }
 
 set_vimrc_el7
index 8188b5ad4184705ee1bc66a3aceb6e2b418ecd54..d85c3f7d817d249342c787be89df326bb40048ec 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 set_vimrc_centos8() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_set_vimrc_centos8[collapsed=true]\r\e[0KGet yum repository files ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling set_vimrc_centos8() ..."
@@ -22,6 +23,7 @@ set_vimrc_centos8() {
     fi
     rm -fv "${tmp_file}"
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_set_vimrc_centos8\r\e[0K"
 }
 
 set_vimrc_centos8
index b1622b67bc34facea886fe3ed215c82b0a8b8e43..80129e7a83d11d370f8d103835d72d61842fbe3b 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 install_pkgs_el7() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_install_pkgs_el7[collapsed=true]\r\e[0KInstalling additional packages ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling install_pkgs_el7() ..."
@@ -28,6 +29,8 @@ install_pkgs_el7() {
        [color]
            ui = true
        EOF
+
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_install_pkgs_el7\r\e[0K"
 }
 
 install_pkgs_el7
index 50201c819f4ba0718fb7c19761ff767287938aeb..a7774d90639646ef4a3b0575c9604d75c5a02948 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 install_pkgs_centos8() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_install_pkgs_centos8[collapsed=true]\r\e[0KInstalling additional packages ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling install_pkgs_centos8() ..."
@@ -28,6 +29,8 @@ install_pkgs_centos8() {
        [color]
            ui = true
        EOF
+
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_install_pkgs_centos8\r\e[0K"
 }
 
 install_pkgs_centos8
index 3d3de6695a753861d76874879fe31cf3a8d72822..d976ab633ce5bc23980ada41299da6547768464e 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 remove_uek_packages() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_remove_uek_packages[collapsed=true]\r\e[0KRemoving Oracle UEK packages ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling remove_uek_packages() ..."
@@ -28,6 +29,7 @@ remove_uek_packages() {
         echo "Removing UEK packages not necessary."
     fi
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_remove_uek_packages\r\e[0K"
 }
 
 remove_uek_packages
index ddc4ea2c2be44c359c131244040cc694b0f187fb..98840e047fbfec93c596b047fbe80e7128807716 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 dist_upgrade() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_dist_upgrade[collapsed=true]\r\e[0KUpgrading all packages ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling dist_upgrade() ..."
@@ -17,6 +18,7 @@ dist_upgrade() {
         echo "[$(date)]: Upgrading system not successful." | tee -a "${ERROR_POINTER}"
     fi
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_dist_upgrade\r\e[0K"
 }
 
 dist_upgrade
index 0215ae6c025cfb0ca4383a0944472fb94d85e2ca..e05797037d19655a370d28f79c4c0dbdb83eaa3f 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 create_motd() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_create_motd\r\e[0KCreating initial MOTD ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling create_motd() ..."
@@ -28,6 +29,7 @@ create_motd() {
     fi
     rm -fv "${mk_script}"
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_create_motd\r\e[0K"
 }
 
 create_motd
index 8b959722aec0d14027ea4bf658008672cbbd4f01..ea325249de3b145ac54e300c80a6179315355a60 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 disable_root_ssh_login_pw() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_disable_root_ssh_login_pw[collapsed=true]\r\e[0KDisabling SSH access for root with password ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling disable_root_ssh_login_pw() ..."
@@ -16,6 +17,7 @@ disable_root_ssh_login_pw() {
         echo "PermitRootLogin without-password" >> /etc/ssh/sshd_config
     fi
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_disable_root_ssh_login_pw\r\e[0K"
 }
 
 disable_root_ssh_login_pw
index 345f43769993e24cfb6d672d79d595f01ad620bf..6ec5340d6da09417053c4d99d96c33c1a6f30a35 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 install_legato() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_install_legato[collapsed=true]\r\e[0KInstalling Legato networker client ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling install_legato() ..."
@@ -31,6 +32,7 @@ install_legato() {
     mkdir -pv /nsr/res
     echo "legato01.pixelpark.com" > /nsr/res/servers
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_install_legato\r\e[0K"
 }
 
 install_legato
index acd7c9f1437d670e8cb68d15f836eed19df5c20a..67099949651d669a667b99b96299ab3737bd8548 100644 (file)
@@ -53,6 +53,7 @@ install_chrony() {
 #-----------------------------------------------------------
 perform_chrony() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_perform_chrony[collapsed=true]\r\e[0KInstalling and configuring Chrony ..."
     if deinstall_ntp ; then
         if install_chrony ; then
             echo
@@ -151,6 +152,7 @@ perform_chrony() {
     done
     echo >> /etc/chrony.keys
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_perform_chrony\r\e[0K"
 }
 
 perform_chrony
index 26f4839aaaff70573f3173e097e51e3cd527220a..8d1da60a81725e6a3d2573b64eb8c26e214d468b 100644 (file)
@@ -4,6 +4,8 @@
 #-----------------------------------------------------------
 install_puppet() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_install_puppet[collapsed=true]\r\e[0KInstalling Puppet agent ..."
+
     local pplabs_conf_dir="/etc/puppetlabs"
     local puppet_conf_dir="${pplabs_conf_dir}/puppet"
     local puppet_conf_file="${puppet_conf_dir}/puppet.conf"
@@ -97,6 +99,7 @@ install_puppet() {
     echo "Disabling service puppet ..."
     systemctl disable puppet
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_install_puppet\r\e[0K"
 }
 
 install_puppet
index aa830e098744c7a8a6d1d6e089d2488bf49ed10f..1f7e229e71ef564615d1af8dca3c4c2d8d12b600 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 install_postfix() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_install_postfix[collapsed=true]\r\e[0KInstalling and configuring Postfix ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling install_postfix() ..."
@@ -184,6 +185,7 @@ install_postfix() {
     postconf -M
     echo
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_install_postfix\r\e[0K"
 }
 
 install_postfix
index f522c1f45ccade26d9a5c12dc59a04a10f4af42d..04c98220113033e69c6efd173571b94e98f313aa 100644 (file)
@@ -4,6 +4,7 @@
 #-----------------------------------------------------------
 config_logrotate() {
 
+    echo -e "\e[0Ksection_start:$( date +%s ):ks_config_logrotate[collapsed=true]\r\e[0KConfiguring logrotation ..."
     echo
     echo "${HASH_LINE}"
     echo "Calling config_logrotate() ..."
@@ -48,6 +49,7 @@ config_logrotate() {
     rm -v "${tmp_file}"
     echo "Finished logrotate configuration."
 
+    echo -e "\e[0Ksection_end:$( date +%s ):ks_config_logrotate\r\e[0K"
 }
 
 config_logrotate