lynx: Initial version of role
This commit is contained in:
parent
c56b889f24
commit
c156481c50
3 changed files with 26 additions and 0 deletions
21
lynx/tasks/main.yml
Normal file
21
lynx/tasks/main.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
- name: install packages
|
||||
package:
|
||||
name: lynx
|
||||
state: installed
|
||||
|
||||
- name: create site configuration
|
||||
copy:
|
||||
dest: /etc/lynx-site.cfg
|
||||
src: lynx-site.cfg
|
||||
mode: 0644
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
||||
|
||||
- name: install html2text script
|
||||
copy:
|
||||
dest: /usr/local/bin/html2text
|
||||
src: html2text.sh
|
||||
mode: 0755
|
||||
owner: root
|
||||
group: "{{ ansible_wheel }}"
|
Loading…
Add table
Add a link
Reference in a new issue