From cfbd2116ab82fe6981db920aaa604a5ccb97c943 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 27 Oct 2024 10:18:01 -0400 Subject: [PATCH] alpine --- bbot/modules/wpscan.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bbot/modules/wpscan.py b/bbot/modules/wpscan.py index 295f10c0bb..c276c738ff 100644 --- a/bbot/modules/wpscan.py +++ b/bbot/modules/wpscan.py @@ -62,6 +62,12 @@ class wpscan(BaseModule): "become": True, "when": "ansible_facts['os_family'] == 'RedHat'", }, + { + "name": "Install Ruby Deps (Alpine)", + "package": {"name": ["ruby-dev", "ruby-bundler"], "state": "present"}, + "become": True, + "when": "ansible_facts['os_family'] == 'Alpine'", + }, { "name": "Install wpscan gem", "gem": {"name": "wpscan", "state": "latest", "user_install": False},