We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21e2fe0 commit d86672cCopy full SHA for d86672c
.github/actions/container_task_prep/action.yaml
@@ -17,5 +17,14 @@ runs:
17
exec_and_capture apt update
18
elif exists 'apt-get'; then
19
exec_and_capture apt-get update
20
+ elif exists 'dnf'; then
21
+ exec_and_capture dnf clean all
22
+ elif exists 'yum'; then
23
+ exec_and_capture yum clean all
24
+ elif exists 'zypper'; then
25
+ exec_and_capture zypper refresh
26
+ else
27
+ echo "No package manager found."
28
+ exit 1
29
fi
30
install_package wget
.github/workflows/pr_testing_install_build_artifact.yaml
@@ -59,5 +59,6 @@ jobs:
59
PT_version: "8.15.0"
60
run: ./openvox_bootstrap/tasks/install_build_artifact_linux.sh
61
- name: Verify openvox-agent is installed
62
+ shell: bash
63
run: |-
64
[[ "$(/opt/puppetlabs/bin/puppet --version)" = "8.15.0" ]]
0 commit comments