blob: 26059fa5256f9ddea01022a15de2f7ffc2497ad1 (
plain)
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
|
---
- name: install shadowsocks-libev
pkgng:
name: shadowsocks-libev
state: present
- name: copy rc script
copy:
src: shadowsocks
dest: /usr/local/etc/rc.d/shadowsocks
mode: 0555
- name: setup configuration file
vars:
profile: "{{ item }}"
template:
src: config.json.j2
dest: /usr/local/etc/shadowsocks-libev/{{ profile.name }}.json
mode: 0640
with_items: "{{ shadowsocks.profiles }}"
- name: setup rc.conf
lineinfile:
path: /etc/rc.conf
regexp: '^shadowsocks_profiles=.*\b{{ item.name }}\b'
line: 'shadowsocks_profiles="${shadowsocks_profiles} {{ item.name }}"'
with_items: "{{ shadowsocks.profiles }}"
- name: enable service
lineinfile:
path: /etc/rc.conf
regexp: '^shadowsocks_enable='
line: 'shadowsocks_enable="YES"'
notify: restart-shadowsocks
- name: start service
command: service shadowsocks start
- name: show client-side config
vars:
config: |
"{"
"local_port": 1080,
"server": "{{ ansible_ssh_host }}",
"server_port": {{ item.port }},
"password": "{{ item.password }}",
"method": "{{ shadowsocks.method }}"
"}"
debug:
msg: "profile<{{ item.name }}>: {{ config.split('\n') }}"
with_items: "{{ shadowsocks.profiles }}"
|