-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtasks_custom_tools_pre.yml
More file actions
40 lines (36 loc) · 888 Bytes
/
tasks_custom_tools_pre.yml
File metadata and controls
40 lines (36 loc) · 888 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
34
35
36
37
38
39
- name: Custom packages (1/2)
apt:
name:
- python2.7-dev
- autoconf
- autogen
- intltool
- libssl1.0-dev
- libsnmp-base
# - libsnmp-dev
- libpq-dev
- snmp-mibs-downloader
- libsystemd-dev
- libkrb5-dev
- unixodbc-dev
update_cache: true
become: yes
- name: Custom packages (2/2)
apt:
name:
- bison
- dpkg-dev
- libgdbm-dev
- apt-utils
- libtool
become: yes
- name: Create /usr/local/etc
file: path="/usr/local/etc" state="directory"
become: yes
- name: Template gemrc
copy:
dest: "/usr/local/etc/gemrc"
content: |
install: --no-document
update: --no-document
become: yes