File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 1313 sudo apt -y install git tmux
1414fi
1515
16+ # Install Python 3.12 on Rocky Linux 9
17+ if $( which dnf 2> /dev/null > /dev/null) ; then
18+ sudo dnf -y install python3.12
19+ fi
20+
1621# Disable the firewall.
1722sudo systemctl is-enabled firewalld && sudo systemctl stop firewalld && sudo systemctl disable firewalld
1823
3237[[ -d beokay ]] || git clone https://github.com/stackhpc/beokay.git -b master
3338
3439# Use Beokay to bootstrap your control host.
35- [[ -d deployment ]] || beokay/beokay.py create --base-path ~ /deployment --kayobe-repo https://opendev.org/openstack/kayobe.git --kayobe-branch master --kayobe-config-repo https://github.com/stackhpc/a-universe-from-nothing.git --kayobe-config-branch master
40+ if $( which dnf 2> /dev/null > /dev/null) ; then
41+ PYTHON_ARG=" --python /usr/bin/python3.12"
42+ else
43+ PYTHON_ARG=" "
44+ fi
45+ [[ -d deployment ]] || beokay/beokay.py create --base-path ~ /deployment --kayobe-repo https://opendev.org/openstack/kayobe.git --kayobe-branch master --kayobe-config-repo https://github.com/stackhpc/a-universe-from-nothing.git --kayobe-config-branch master $PYTHON_ARG
3646
3747# Clone the Tenks repository.
3848cd ~ /deployment/src
You can’t perform that action at this time.
0 commit comments