Skip to content

Commit

Permalink
CI Tor
Browse files Browse the repository at this point in the history
  • Loading branch information
adrelanos committed Nov 5, 2023
1 parent 4c595af commit 8dcbacf
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,13 @@ jobs:
ls /etc/sudoers.d
- name: Enable Services
run: |
service tor start
service tor status
if command -v apt-get; then
service tor start
service tor status
elif command -v dnf; then
systemctl start tor || true
systemctl status tor || true
fi
- name: Normal user with sudo privileges
run: |
if test -f /etc/debian_version; then
Expand Down

0 comments on commit 8dcbacf

Please sign in to comment.