echo "Using snippet $init_repos_snippet"
$SNIPPET($init_repos_snippet)
+#set $bashrc_snippet = "per_status/" + $SYSTEM_STATUS + "/tpl.210.bashrc-centos8.sh"
+echo
+echo "Using snippet $bashrc_snippet"
+$SNIPPET($bashrc_snippet)
+
--- /dev/null
+## !/bin/bash
+#raw
+
+#-----------------------------------------------------------
+set_bashrc_centos8() {
+
+ echo
+ echo "${HASH_LINE}"
+ echo "Calling set_bashrc_centos8() ..."
+ echo
+ local url="${COBBLER_URL}/${ws_rel_filesdir}/${system_status}/bashrc-centos8"
+
+ local tmp_file=$( mktemp )
+ wget -O "${tmp_file}" --dns-timeout=2 --connect-timeout=3 --read-timeout=3 "${url}" || true
+ if [[ -s "${tmp_file}" ]] ; then
+ cp -p /etc/bashrc /etc/bashrc.original
+ mv -v "${tmp_file}" /etc/bashrc
+ chmod -v 0644 /etc/bashrc
+ fi
+ rm -fv "${tmp_file}"
+
+}
+
+set_bashrc_centos8
+
+#end raw
+## vim: ts=4 et list