]> git.phdru.name Git - ansible.git/blobdiff - playbooks/debian/roles/phd/tasks/create.yml
Refactor(phd): Merge `create.yml` back into `main.yml`
[ansible.git] / playbooks / debian / roles / phd / tasks / create.yml
diff --git a/playbooks/debian/roles/phd/tasks/create.yml b/playbooks/debian/roles/phd/tasks/create.yml
deleted file mode 100644 (file)
index dbd4209..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-- name: Create system groups
-  become: true
-  group:
-    name: "{{ item }}"
-    system: true
-  loop: "{{ system_groups.split(',') }}"
-
-- name: Create group phd
-  become: true
-  group:
-    name: phd
-
-- name: Add user phd
-  become: true
-  user:
-    name: phd
-    group: phd
-    groups: "{{ system_groups }}"