Skip to content

Commit 424eeb8

Browse files
committed
Making sure ansible works for DO & AWS
1 parent 4a05f08 commit 424eeb8

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

ansible/tasks/setup-extensions.yml

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
- ca-certificates
5151
- curl
5252
- git-core
53-
- python
5453
- gpp
5554
- cpp
5655
- pkg-config

ansible/tasks/setup-system.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,23 @@
44
apt: update_cache=yes upgrade=yes
55
# SEE http://archive.vn/DKJjs#parameter-upgrade
66

7+
- name: add universe repository for bionic
8+
apt_repository:
9+
repo: deb http://archive.ubuntu.com/ubuntu bionic universe
10+
state: present
11+
712
- name: Install essentials
813
apt:
914
pkg:
1015
- ufw
16+
- python3
17+
- python3-pip
1118
update_cache: yes
1219
cache_valid_time: 3600
1320

1421
- name: Install psycopg2 to enable ansible postgreSQL features
15-
pip: name=psycopg2-binary
22+
pip:
23+
name: psycopg2-binary
1624

1725
- name: System - Create services.slice
1826
template:

0 commit comments

Comments
 (0)