1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_weechat.git synced 2024-08-16 13:09:48 +02:00
ansible_role_weechat/tasks/install-debian.yml

51 lines
1 KiB
YAML
Raw Normal View History

2019-07-20 19:13:01 +02:00
---
2023-03-01 21:54:56 +01:00
- name: Update apt cache
become: true
ansible.builtin.apt:
cache_valid_time: 3600
update_cache: true
when:
- ansible_pkg_mgr == "apt"
2023-03-01 21:27:09 +01:00
- name: Install apt-transport-https
become: true
ansible.builtin.apt:
2023-03-01 21:54:56 +01:00
name:
- apt-transport-https
- gpg
state: present
2019-07-20 19:13:01 +02:00
- name: Add weechat repository gpg-key
become: true
ansible.builtin.apt_key:
keyserver: 'keys.openpgp.org'
2021-05-27 16:18:04 +02:00
id: "{{ weechat__gpg_id }}"
2019-07-20 19:13:01 +02:00
state: present
2023-03-01 21:27:09 +01:00
- name: Add weechat repo
2019-07-20 19:13:01 +02:00
become: true
ansible.builtin.apt_repository:
2020-11-10 17:30:41 +01:00
repo: "deb {{ weechat__debian_weechat_repo }}"
2019-07-20 19:13:01 +02:00
state: present
2020-11-10 17:30:41 +01:00
update_cache: true
2019-07-20 19:13:01 +02:00
2023-03-01 21:27:09 +01:00
- name: Add weechat repo-src
become: true
ansible.builtin.apt_repository:
2020-11-10 17:30:41 +01:00
repo: "deb-src {{ weechat__debian_weechat_repo }}"
state: present
2020-11-10 17:30:41 +01:00
update_cache: true
2023-03-01 21:27:09 +01:00
- name: Install recomended weechat packages
2019-07-20 19:13:01 +02:00
become: true
ansible.builtin.apt:
2019-07-20 19:13:01 +02:00
name:
2020-11-10 17:30:41 +01:00
- weechat-curses
- weechat-plugins
- weechat-python
- weechat-perl
- weechat-lua
- weechat-ruby
- weechat-doc
2019-07-20 19:13:01 +02:00
state: present