21 lines
446 B
YAML
21 lines
446 B
YAML
---
|
|
- name: install packages
|
|
ansible.builtin.package:
|
|
name: lynx
|
|
state: installed
|
|
|
|
- name: create site configuration
|
|
ansible.builtin.copy:
|
|
dest: /etc/lynx-site.cfg
|
|
src: lynx-site.cfg
|
|
mode: 0644
|
|
owner: root
|
|
group: "{{ ansible_wheel }}"
|
|
|
|
- name: install html2text script
|
|
ansible.builtin.copy:
|
|
dest: /usr/local/bin/html2text
|
|
src: html2text.sh
|
|
mode: 0755
|
|
owner: root
|
|
group: "{{ ansible_wheel }}"
|