#!/bin/bash #set -ax script_cmd=${0##*/} declare -A all_series all_series=( ['centos8']="centos/8-Stream/cloud" ['centos9']="centos/9-Stream/cloud" ) project_name="sos-testing-rh" project="--project ${project_name}" lxc="lxc ${project}" lxc_exec="${lxc} exec" sos_location="$HOME/gitRepos/sos" lxc project create ${project_name} ${lxc} profile edit default < lxd_profile_rh.yaml for distro in "${!all_series[@]}" do inst_name=sos-avocado01-${distro} ${lxc} delete ${inst_name} --force image="images:${all_series[${distro}]}" ${lxc} launch ${image} ${inst_name} --vm -c limits.cpu=4 -c limits.memory=4GiB if [[ "${script_cmd}" == "do_sos_avocado_rh.sh" ]] ; then cd ${sos_location} find . -type f -name "*.pyc" -exec sudo rm -f {} \; rm -rf .tox *.snap *.deb tar cfz /tmp/sos.tgz . cd - fi echo -n "Checking VM status of ${inst_name} " while true ; do num_of_procs=$(${lxc} info ${inst_name} | yq .Resources.Processes) [[ ${num_of_procs} -gt 0 ]] && break sleep 3 echo -n "." done echo done if [[ "${script_cmd}" == "do_sos_avocado_rh.sh" ]] ; then ${lxc} file push /tmp/sos.tgz ${inst_name}/root/sos.tgz fi echo -n "Checking cloud-init status of ${inst_name} " while true ; do status=$(${lxc_exec} ${inst_name} -- cloud-init status | grep status | awk '{print $2}') [[ "${status}" == "done" ]] && break [[ "${status}" == "error" ]] && break sleep 3 echo -n "." done echo done if [[ "${script_cmd}" == "do_sos_testing.sh" ]] ; then ${lxc_exec} ${inst_name} -- sudo add-apt-repository -y ppa:${ppa_user}/${ppa_name} if [[ "${distro}" == "${latest_dev_series}" ]] ; then filename="$(echo ${ppa_name} | sed 's/\./_/g')" ${lxc_exec} ${inst_name} -- sed -i s/i${latest_sup_series}/${latest_dev_series}/g /etc/apt/sources.list.d/${ppa_user}-ubuntu-${filename}-${latest_sup_series}.list fi cat > setup_sos.sh << EOF #!/bin/bash sos_type="${sos_type}" if [[ "\${sos_type}" == "deb" ]] ; then apt -y install sosreport elif [[ "\${sos_type}" == "snap" ]] ; then snap install sosreport --channel ${sos_channel} --classic fi EOF ${lxc} file push setup_sos.sh ${inst_name}/root/setup_sos.sh fi if [[ "${script_cmd}" == "do_sos_avocado_rh.sh" ]] ; then ${lxc_exec} ${inst_name} -- bash /root/run_avocado.sh elif [[ "${script_cmd}" == "do_sos_testing.sh" ]] ; then ${lxc_exec} ${inst_name} -- bash /root/setup_sos.sh ${lxc_exec} ${inst_name} -- bash /root/run_sos.sh fi ${lxc} stop ${inst_name} done