]> git.phdru.name Git - ansible.git/blobdiff - playbooks/redhat/init-local-phd.yml
Feat: Rename `*.yml` to `*.yaml`
[ansible.git] / playbooks / redhat / init-local-phd.yml
diff --git a/playbooks/redhat/init-local-phd.yml b/playbooks/redhat/init-local-phd.yml
deleted file mode 100644 (file)
index bbb7958..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-- name: Update local user phd
-  hosts: "{{ hosts | default('localhost') }}"
-  gather_facts: false
-  vars:
-    system_groups: root,wheel,adm,disk,cdrom,floppy,audio,video,users,mail,input
-  tasks:
-    - 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: Create user phd
-      become: true
-      user:
-        name: phd
-        groups: "{{ system_groups }}"
-    - name: Install X11
-      become: true
-      dnf:
-        name: ['fvwm', 'rxvt-unicode', 'xorg']
-        state: latest
-        update_cache: yes