Skip to content

Commit 7c4d13a

Browse files
committed
fix indents
1 parent 0712070 commit 7c4d13a

File tree

1 file changed

+43
-43
lines changed

1 file changed

+43
-43
lines changed
Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,58 @@
11
- name: Update apt cache
22
apt:
3-
update_cache: yes
3+
update_cache: yes
44

55
- name: Install dependencies
66
apt:
7-
name:
8-
- git
9-
- build-essential
10-
- liblz4-dev
11-
- libzstd-dev
12-
- clang-11
13-
- libcurl4-openssl-dev
14-
- libkrb5-dev
15-
- libicu-dev
16-
state: present
7+
name:
8+
- git
9+
- build-essential
10+
- liblz4-dev
11+
- libzstd-dev
12+
- clang-11
13+
- libcurl4-openssl-dev
14+
- libkrb5-dev
15+
- libicu-dev
16+
state: present
1717

1818
- name: Add PostgreSQL repo and install postgresql-server-dev
1919
block:
20-
- name: Add PostgreSQL APT key
21-
apt_key:
22-
url: "https://www.postgresql.org/media/keys/ACCC4CF8.asc"
23-
state: present
20+
- name: Add PostgreSQL APT key
21+
apt_key:
22+
url: "https://www.postgresql.org/media/keys/ACCC4CF8.asc"
23+
state: present
2424

25-
- name: Add PostgreSQL APT repository
26-
apt_repository:
27-
repo: "deb http://apt.postgresql.org/pub/repos/apt {{ ansible_distribution_release }}-pgdg main"
28-
state: present
25+
- name: Add PostgreSQL APT repository
26+
apt_repository:
27+
repo: "deb http://apt.postgresql.org/pub/repos/apt {{ ansible_distribution_release }}-pgdg main"
28+
state: present
2929

30-
- name: Install postgresql-server-dev-15
31-
apt:
32-
name: postgresql-server-dev-15
33-
state: present
30+
- name: Install postgresql-server-dev-15
31+
apt:
32+
name: postgresql-server-dev-15
33+
state: present
3434

3535
- name: Clone and install Citus
3636
block:
37-
- name: Clone Citus repository
38-
git:
39-
repo: 'https://github.com/citusdata/citus.git'
40-
dest: '/tmp/citus'
41-
clone: yes
42-
43-
- name: Build Citus
44-
command:
45-
cmd: "{{ item }}"
46-
chdir: /tmp/citus
47-
loop:
48-
- './configure'
49-
- 'make'
50-
args:
51-
creates: "/tmp/citus/Makefile"
52-
53-
- name: Install Citus
54-
command:
55-
cmd: "sudo make install"
56-
chdir: /tmp/citus
37+
- name: Clone Citus repository
38+
git:
39+
repo: 'https://github.com/citusdata/citus.git'
40+
dest: '/tmp/citus'
41+
clone: yes
42+
43+
- name: Build Citus
44+
command:
45+
cmd: "{{ item }}"
46+
chdir: /tmp/citus
47+
loop:
48+
- './configure'
49+
- 'make'
50+
args:
51+
creates: "/tmp/citus/Makefile"
52+
53+
- name: Install Citus
54+
command:
55+
cmd: "sudo make install"
56+
chdir: /tmp/citus
5757

5858

0 commit comments

Comments
 (0)