diff options
author | heqnx <root@heqnx.com> | 2025-05-27 16:19:31 +0300 |
---|---|---|
committer | heqnx <root@heqnx.com> | 2025-05-27 16:19:31 +0300 |
commit | 610623f4c075d4428b8b98084476ffdc89d0785c (patch) | |
tree | 365905e2965acb2968a9e73b4090096cf28e2c11 /roles/icewm/tasks/main.yaml | |
parent | cfd0d05265721e98e6cbad55d8af0dcae5df7b6d (diff) | |
download | ansible-playbooks-610623f4c075d4428b8b98084476ffdc89d0785c.tar.gz ansible-playbooks-610623f4c075d4428b8b98084476ffdc89d0785c.zip |
renamed role
Diffstat (limited to 'roles/icewm/tasks/main.yaml')
-rw-r--r-- | roles/icewm/tasks/main.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/roles/icewm/tasks/main.yaml b/roles/icewm/tasks/main.yaml new file mode 100644 index 0000000..db30cd7 --- /dev/null +++ b/roles/icewm/tasks/main.yaml @@ -0,0 +1,16 @@ +- name: install icewm + apt: + name: + - icewm + - fonts-dejavu + - xterm + state: present + update_cache: true + +- name: copy system-wide icewm config files + copy: + src: icewm/ + dest: /etc/X11/icewm/ + owner: root + group: root + mode: '0644' |