Ansible Tomcat

This commit is contained in:
2021-12-13 16:43:56 +01:00
parent 05b676f5dd
commit 78e30b6226
16 changed files with 252 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
- name: Ensure the system can use the HTTPS transport for APT.
stat:
path: /usr/lib/apt/methods/https
register: apt_https_transport
- name: Install APT HTTPS transport.
apt:
name: "apt-transport-https"
state: present
update_cache: yes
when: not apt_https_transport.stat.exists
- name: Install basic packages
package:
name: ['vim','aptitude','bash-completion','tmux','tree','htop','wget','unzi>
state: present
update_cache: yes