summaryrefslogtreecommitdiff
path: root/roles/unix_users/subplot.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-10-10 09:58:06 +0300
committerLars Wirzenius <liw@liw.fi>2020-10-10 09:58:06 +0300
commitb2552e839c18a6831e258dc13f90e55643cfaa34 (patch)
treeb7dadc9b4e6e96dbbae7e071d0005a37881baa92 /roles/unix_users/subplot.py
parentcada4d50068e4447fd1ed2eba1cd973381c97af8 (diff)
downloaddebian-ansible-b2552e839c18a6831e258dc13f90e55643cfaa34.tar.gz
fix: unix_users scenario verifies user doesn't exist before creating
Diffstat (limited to 'roles/unix_users/subplot.py')
-rw-r--r--roles/unix_users/subplot.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/unix_users/subplot.py b/roles/unix_users/subplot.py
index 118d007..9b77e49 100644
--- a/roles/unix_users/subplot.py
+++ b/roles/unix_users/subplot.py
@@ -1,3 +1,10 @@
+def host_does_not_have_user(ctx, username=None):
+ assert_ne = globals()["assert_ne"]
+ qemu = ctx["qemu"]
+ output, exit = qemu.ssh(["getent", "passwd", username])
+ assert_ne(exit, 0)
+
+
def host_has_user(ctx, username=None):
assert_eq = globals()["assert_eq"]
qemu = ctx["qemu"]