From 1eb3d120f8416fb72d8231e263f65244a96d940c Mon Sep 17 00:00:00 2001 From: "flyingscorpio@clevo" Date: Sun, 27 Feb 2022 13:52:53 +0100 Subject: [PATCH] Add role markdown --- configs.yml | 15 --------------- playbook.yml | 1 + roles/markdown/files/text-markdown.xml | 8 ++++++++ roles/markdown/handlers/main.yml | 3 +++ roles/markdown/tasks/main.yml | 6 ++++++ 5 files changed, 18 insertions(+), 15 deletions(-) create mode 100644 roles/markdown/files/text-markdown.xml create mode 100644 roles/markdown/handlers/main.yml create mode 100644 roles/markdown/tasks/main.yml diff --git a/configs.yml b/configs.yml index b06a985..7c63540 100644 --- a/configs.yml +++ b/configs.yml @@ -25,21 +25,6 @@ mariadb: command: sudo mariadb-install-db --user=mysql --basedir=/usr --datadir=/var/lib/mysql && sudo systemctl start mysqld.service && sudo mysql_secure_installation condition: "sudo find /var/lib/mysql -mindepth 1 | read" -markdown viewer: - - write: - - ~/.local/share/mime/packages/text-markdown.xml - - | - - - - - - - - - - run: - - update-mime-database ~/.local/share/mime - rust: - run: command: rustup self uninstall diff --git a/playbook.yml b/playbook.yml index 91d2a4f..51df890 100644 --- a/playbook.yml +++ b/playbook.yml @@ -15,6 +15,7 @@ - { role: pacman, tags: [pacman, pacman.conf] } - { role: grub, tags: grub } - { role: firefox, tags: firefox } + - { role: markdown, tags: markdown } - { role: tor, tags: tor } - { role: sudoers, tags: sudoers } - { role: lilypond, tags: lilypond } diff --git a/roles/markdown/files/text-markdown.xml b/roles/markdown/files/text-markdown.xml new file mode 100644 index 0000000..ca7e891 --- /dev/null +++ b/roles/markdown/files/text-markdown.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/roles/markdown/handlers/main.yml b/roles/markdown/handlers/main.yml new file mode 100644 index 0000000..7d40748 --- /dev/null +++ b/roles/markdown/handlers/main.yml @@ -0,0 +1,3 @@ +--- +- name: Update mime database + command: update-mime-database ~/.local/share/mime diff --git a/roles/markdown/tasks/main.yml b/roles/markdown/tasks/main.yml new file mode 100644 index 0000000..52caeee --- /dev/null +++ b/roles/markdown/tasks/main.yml @@ -0,0 +1,6 @@ +--- +- name: Copy text-markdown.xml + copy: + src: text-markdown.xml + dest: ~/.local/share/mime/packages/text-markdown.xml + notify: Update mime database