Skip to content

Commit

Permalink
test things
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 27, 2024
1 parent 7da0c63 commit 9e90572
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/distro_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
dnf install -y curl git bash gcc make openssl-devel bzip2-devel libffi-devel zlib-devel xz-devel tk-devel gdbm-devel readline-devel sqlite-devel
elif [ "$ID" = "gentoo" ]; then
emerge-webrsync
emerge --update --newuse dev-vcs/git curl bash
emerge --update --newuse dev-vcs/git media-libs/mesa curl bash
fi
fi
Expand Down
10 changes: 9 additions & 1 deletion bbot/core/helpers/depsinstaller/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,15 @@ def install_core_deps(self):
# ensure tldextract data is cached
self.parent_helper.tldextract("evilcorp.co.uk")
# command: package_name
core_deps = {"unzip": "unzip", "curl": "curl"}
core_deps = {
"unzip": "unzip",
"zipinfo": "unzip",
"curl": "curl",
"git": "git",
"make": "make",
"gcc": "gcc",
"bash": "bash",
}
for command, package_name in core_deps.items():
if not self.parent_helper.which(command):
to_install.add(package_name)
Expand Down
2 changes: 1 addition & 1 deletion bbot/modules/wpscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class wpscan(BaseModule):
"name": "Install Ruby Deps (Fedora)",
"package": {"name": ["rubygems", "ruby-devel"], "state": "present"},
"become": True,
"when": "ansible_facts['os_family'] == 'Fedora'",
"when": "ansible_facts['os_family'] == 'RedHat'",
},
{
"name": "Install wpscan gem",
Expand Down

0 comments on commit 9e90572

Please sign in to comment.