-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtasks_webmin.yml
More file actions
33 lines (29 loc) · 786 Bytes
/
Copy pathtasks_webmin.yml
File metadata and controls
33 lines (29 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
- name: Webmin | Add apt repository
template: src={{root_dir}}/files/webmin/apt_source.j2 dest=/etc/apt/sources.list.d/webmin.list mode=644
when: ansible_os_family == "Debian"
become: yes
tags:
-webmin
-setup
- name: Webmin | Add Webmin key
apt_key: url='http://www.webmin.com/jcameron-key.asc' state=present
become: yes
tags:
-webmin
-setup
- name: Webmin | Install Webmin and prerequisites
apt: update_cache=yes pkg={{ item }} state=present
become: yes
with_items:
- perl
- libnet-ssleay-perl
- openssl
- libauthen-pam-perl
- libpam-runtime
- libio-pty-perl
- apt-show-versions
- python
- webmin
tags:
-webmin
-setup