We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a05f08 commit 424eeb8Copy full SHA for 424eeb8
ansible/tasks/setup-extensions.yml
@@ -50,7 +50,6 @@
50
- ca-certificates
51
- curl
52
- git-core
53
- - python
54
- gpp
55
- cpp
56
- pkg-config
ansible/tasks/setup-system.yml
@@ -4,15 +4,23 @@
4
apt: update_cache=yes upgrade=yes
5
# SEE http://archive.vn/DKJjs#parameter-upgrade
6
7
+- name: add universe repository for bionic
8
+ apt_repository:
9
+ repo: deb http://archive.ubuntu.com/ubuntu bionic universe
10
+ state: present
11
+
12
- name: Install essentials
13
apt:
14
pkg:
15
- ufw
16
+ - python3
17
+ - python3-pip
18
update_cache: yes
19
cache_valid_time: 3600
20
21
- name: Install psycopg2 to enable ansible postgreSQL features
- pip: name=psycopg2-binary
22
+ pip:
23
+ name: psycopg2-binary
24
25
- name: System - Create services.slice
26
template:
0 commit comments