feat: provision VMs for mCaptcha/dos/demo-server, mCaptcha/dos/locust, mCaptcha/mCaptcha #1

Merged
realaravinth merged 12 commits from dos into master 2023-08-17 05:15:23 +05:30
Showing only changes of commit 25f87a3654 - Show all commits

View file

@ -25,3 +25,20 @@ def test_ssh_service_running_and_enabled(host):
def test_ssh_is_installed(host):
pkg = host.package("openssh-server")
assert pkg.is_installed
def test_pkgis_installed(host):
for pkg in [
"git",
"wget",
"curl",
"gpg",
"ca-certificates",
"zip",
"python3-pip",
"virtualenv",
"python3-setuptools",
"ntp",
"ufw",
]:
assert host.package(pkg).is_installed