Commit 410a98f

bryfry <bryon.fryer@gmail.com>
2018-02-22 12:57:58
dir check
1 parent e3d8169
Changed files (1)
tasks/home.yml
@@ -18,7 +18,6 @@
     dest: "{{ ansible_env.HOME }}/.{{ item }}"
     state: link
     force: yes
-  tags: home
   with_items:
   - vimrc
   - tmux.conf
@@ -26,10 +25,21 @@
   - bashrc
   - bash_aliases
 
+- name: home - create elinks config dir
+  file: 
+    path: "{{ ansible_env.HOME }}/.elinks"
+    state: directory
+
 - name: home - symbolic links (ssh config)
   file:
     src: "{{ home_dir }}/ssh_config" 
     dest: "{{ ansible_env.HOME }}/.ssh/config"
     state: link
     force: yes
-  tags: home
+
+- name: home - symbolic links (elinks)
+  file:
+    src: "{{ home_dir }}/elinks.conf" 
+    dest: "{{ ansible_env.HOME }}/.elinks/elinks.conf"
+    state: link
+    force: yes