File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
.github/actions/container_task_prep Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 1111 path : facts
1212 - name : Ensure wget is installed
1313 shell : bash
14+ env :
15+ PT__installdir : ${{ github.workspace }}
1416 run : |-
1517 source openvox_bootstrap/files/common.sh
18+
19+ # Ensure wget is installed.
1620 if exists 'apt'; then
1721 exec_and_capture apt update
1822 elif exists 'apt-get'; then
2731 echo "No package manager found."
2832 exit 1
2933 fi
34+
35+ # Deal with missing package dependencies in the containers.
36+ # ...possibly this should be moved into the
37+ # install_build_artifact task scripts.
38+ set_platform
39+ if [[ "${platform}" == 'Rocky' ]]; then
40+ # The Rocky9 container, at least, is missing openvox-agent's
41+ # systemd dependency...
42+ exec_and_capture dnf install -y systemd
43+ fi
44+
3045 install_package wget
You can’t perform that action at this time.
0 commit comments