Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
adrelanos committed Nov 10, 2023
1 parent 5edef84 commit 12a270b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,13 @@ jobs:
- name: System Basic Packages
run: |
if command -v apt-get; then
apt-get update -y && apt-get install -y shellcheck sudo adduser tor
apt-get update --error-on=any
## Installer aborts if package upgrades are pending.
apt-get dist-upgrade --yes
apt-get install --yes shellcheck sudo adduser tor
elif command -v dnf; then
dnf update -y && dnf install -y ShellCheck sudo tor systemd
dnf upgrade --assumeyes
dnf install --assumeyes ShellCheck sudo tor systemd
else
exit 1
fi
Expand All @@ -67,8 +71,8 @@ jobs:
cat /etc/os-release
uname -a
echo "${PATH}"
cat /etc/sudoers
ls /etc/sudoers.d
#cat /etc/sudoers
#ls /etc/sudoers.d
- name: Enable Services
run: |
if command -v apt-get; then
Expand Down

0 comments on commit 12a270b

Please sign in to comment.