21 lines
450 B
YAML
21 lines
450 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 }}"
|