mirror of
https://github.com/roles-ansible/ansible_role_weechat.git
synced 2024-08-16 13:09:48 +02:00
50 lines
1 KiB
YAML
50 lines
1 KiB
YAML
---
|
|
- name: Update apt cache
|
|
become: true
|
|
ansible.builtin.apt:
|
|
cache_valid_time: 3600
|
|
update_cache: true
|
|
when:
|
|
- ansible_pkg_mgr == "apt"
|
|
|
|
- name: Install apt-transport-https
|
|
become: true
|
|
ansible.builtin.apt:
|
|
name:
|
|
- apt-transport-https
|
|
- gpg
|
|
state: present
|
|
|
|
- name: Add weechat repository gpg-key
|
|
become: true
|
|
ansible.builtin.apt_key:
|
|
keyserver: 'keys.openpgp.org'
|
|
id: "{{ weechat__gpg_id }}"
|
|
state: present
|
|
|
|
- name: Add weechat repo
|
|
become: true
|
|
ansible.builtin.apt_repository:
|
|
repo: "deb {{ weechat__debian_weechat_repo }}"
|
|
state: present
|
|
update_cache: true
|
|
|
|
- name: Add weechat repo-src
|
|
become: true
|
|
ansible.builtin.apt_repository:
|
|
repo: "deb-src {{ weechat__debian_weechat_repo }}"
|
|
state: present
|
|
update_cache: true
|
|
|
|
- name: Install recomended weechat packages
|
|
become: true
|
|
ansible.builtin.apt:
|
|
name:
|
|
- weechat-curses
|
|
- weechat-plugins
|
|
- weechat-python
|
|
- weechat-perl
|
|
- weechat-lua
|
|
- weechat-ruby
|
|
- weechat-doc
|
|
state: present
|