From c93dc97b679903ff083394bb4c6fb4cb747a6393 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Sat, 19 Jul 2014 00:58:35 +0900 Subject: [PATCH] ansible: add task to fetch colortable scripts --- ansible/ansible.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ansible/ansible.yml b/ansible/ansible.yml index 26e7ac1..78cab26 100644 --- a/ansible/ansible.yml +++ b/ansible/ansible.yml @@ -8,6 +8,11 @@ with_items: packages sudo: yes when: ansible_os_family == "Archlinux" + - name: install script colortable16 + get_url: url=https://gist.github.com/10sr/6852317/raw/colortable16.sh dest={{ ansible_env.HOME }}/.local/bin/colortable16.sh mode=0755 + - name: install script 256colors + get_url: url=https://gist.github.com/10sr/6852331/raw/256colors2.pl dest={{ ansible_env.HOME }}/.local/bin/256colors2.pl mode=0755 + # handlers: # - name: restart ntpd # action: service name=ntpd state=restarted