-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovision.yml
133 lines (124 loc) · 2.93 KB
/
provision.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
---
- name: install and update packages
hosts: all
# # user: ubuntu
become: True
become_user: root
tasks:
- name: update installed packages
apt:
upgrade: dist
update_cache: yes
- name: add apt key for yarn
apt_key:
url: "https://dl.yarnpkg.com/debian/pubkey.gpg"
state: present
- name: add yarn pkg repo
apt_repository:
repo: deb https://dl.yarnpkg.com/debian/ stable main
state: present
filename: yarn
- name: install server base packages
apt:
name: "{{ item }}"
state: latest
update_cache: yes
with_items:
- apt-file
- apt-transport-https
- automake
- autoconf
- build-essential
- cowsay
- curl
- dnsutils
- emacs24
- gettext
- git
- htop
- iotop
- jq
- libexpat1-dev
- libcurl4-openssl-dev
- libssl-dev
- moreutils
- pcregrep
- pv
- python-dev
- python-pip
- python-setuptools
- python3-setuptools
- python3-dev
- python3-pip
- rsync
- silversearcher-ag
- speedometer
- texinfo
- tig
- tmux
- toilet
- wget
- yarn
- zsh
- locale_gen:
name: en_US.UTF-8
state: present
- name: install rvm
hosts: all
# user: ubuntu
become: True
become_user: root
roles:
- role: rvm_io.ruby
rvm1_rubies:
- 'ruby-2.3.1'
rvm1_user: 'root'
- name: configure machine
hosts: all
# user: ubuntu
become: True
become_user: root
tasks:
- authorized_key:
user: root
key: https://github.com/hut8.keys
- lineinfile: dest=/etc/ssh/sshd_config
state=present
regexp='^AllowAgentForwarding'
line='AllowAgentForwarding yes'
notify: restart sshd
- lineinfile: dest=/etc/ssh/ssh_config
state=present
regexp='^StrictHostKeyChecking'
line='StrictHostKeyChecking no'
handlers:
- name: restart sshd
service: name=ssh state=restarted
- name: make swapfile
hosts: all
# user: ubuntu
become: True
become_user: root
roles:
- { role: kamaln7.swapfile, swapfile_use_dd: True, swapfile_size: 2048 }
- name: install go
hosts: all
# user: ubuntu
become: True
become_user: root
tasks:
- name: determine if go is installed
stat:
path: /usr/local/go/bin/go
register: go_stat
- name: download go binary distribution
get_url:
dest: '/tmp'
url: 'https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz'
when: go_stat.stat.exists == False
- name: extract tarball
unarchive:
src: "/tmp/go1.8.linux-amd64.tar.gz"
dest: "/usr/local/"
copy: no
when: go_stat.stat.exists == False