1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00
iiab/roles/openvpn/tasks/main.yml

232 lines
10 KiB
YAML
Raw Normal View History

2020-01-30 09:00:00 +00:00
# TO DO: WRAP 12 OR 13 STANZAS BELOW INTO install.yml, conditioned by...
2020-01-24 03:11:24 +00:00
# 'when: openvpn_installed is undefined'
2020-01-13 21:19:50 +00:00
#
2020-01-24 03:11:24 +00:00
# BEWARE: 4th stanza (ssh pubkey deletions) is already conditioned by...
# 'when: not openvpn_install' (revise?)
2020-01-13 21:19:50 +00:00
2018-08-13 19:20:12 +00:00
- name: Install OpenVPN and Nmap packages
package:
2018-10-28 15:40:51 +00:00
name:
- openvpn
- nmap
state: present
2017-05-27 18:09:50 +00:00
# Newer versions of NMap do not include NCat, needed to announce /etc/iiab/openvpn_handle
- name: Install Ncat package (if Debian > 9 or Ubuntu > 18)
2019-06-13 03:53:20 +00:00
package:
2019-10-09 22:18:08 +00:00
name: ncat
2019-06-13 03:53:20 +00:00
state: present
when: is_debuntu and not (is_debian_8 or is_debian_9 or is_ubuntu_16 or is_ubuntu_17 or is_ubuntu_18)
2019-06-13 03:53:20 +00:00
- name: Install ssh public keys for remote support (if openvpn_install)
2018-08-20 20:02:05 +00:00
lineinfile:
line: "{{ item.pubkey }}"
2018-08-20 21:15:05 +00:00
regexp: "{{ item.regexp }}"
2018-08-20 20:02:05 +00:00
path: /root/.ssh/authorized_keys
with_items:
2018-08-20 21:15:05 +00:00
- regexp: "LvCSAAcfYIdZPR4ePVpVUZ/IbkGjpQSoRMa5HuVjMO3cZNR27ptqjNjq2husJOyhMFCOBTzo4thioGyTpBr4u3s=$" # Tim Moody
pubkey: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIEAhlQIh8ZPx4awdM0O6QNcPbx3qIZ39FHjF2YJ2SX3z7iLnYiz03Ek6Bux9P4HvaVAqlApiz2I68Vq8TfU2s/+LvCSAAcfYIdZPR4ePVpVUZ/IbkGjpQSoRMa5HuVjMO3cZNR27ptqjNjq2husJOyhMFCOBTzo4thioGyTpBr4u3s="
2018-08-20 21:15:05 +00:00
- regexp: "tUM4hl009fbXY4Yy3bAadWL1CquVrZmKfBBWhyhz8zLD6TQ== ghunt@ip-192-168-123-123.ec2.internal$"
pubkey: "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxAmjU7VojyK+0Pjp2p8CCGTNBtE565A/L8IVbAT8MIucRE9LN1g5LjGnOHUShFJpwuTR1JLX2r9EDRMsf9MmyTgUAnuyP005giWVHXLPtjyjTzbsJ1DEtXRytulmF+GlCOaqPWNde6EOmReqPHbmjIQpRZ/Sc8hziS4jVSQuBA9EhaBmZ62CPqK33mPJvnpwMtdd6nHXAcXsZhStd3NhVDm27+B3sHI6mr2w7ExdBXE5DKiZL2po8n2y4hJYZreJopbjcQmv4oWdDWvPu5I92xDgYCsqcE7zSrv1um+tUM4hl009fbXY4Yy3bAadWL1CquVrZmKfBBWhyhz8zLD6TQ== ghunt@ip-192-168-123-123.ec2.internal"
2018-08-20 21:15:05 +00:00
- regexp: "heOMXXNU6skxdPh2fcHh0bzQcaCSQ== holt@crank$"
pubkey: "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEApHPly+EA1M4bispl3AulTLjyYCjcJzh6s779K3epDkqh600a+fHsdIiddWCAfIonRq+9MJyOiaNQ+WYLOuajI1IiFZWFt45xDAiyCUnyuT+ytAX+IA3TgTwgTZPfzDOzI8rDRV9Sgl+LZLfPno7T3qxcGx2l51bRk+koRK+Txpph//M3jGvsFmTKhjvfxgEIUmMH9SkASxEdyqASr0+/+uLR92MnT+8CT1pOYYoJyZp9Lta5eGqJvbEmd3Dn7MXqD3vXE57o4rBJ0bR3q5LK59WVNxNQbulJ9z5V7aTJ4AbBFQWxm0fH0gBx+heOMXXNU6skxdPh2fcHh0bzQcaCSQ== holt@crank"
# CLARIF: plus signs (+) in public keys cause duplicate key additions (above)
# and failure during removal (below) as "+" has a special meaning as
2018-08-20 21:21:40 +00:00
# interpreted in a Python regexp, as implemented by Ansible's lineinfile module:
# https://docs.python.org/2/library/re.html
# WORKAROUND: the tail end of each public key (after the last plus sign) is
2018-08-20 21:21:40 +00:00
# being used (instead of the full key) as an abbreviated regexp for now.
# A backslash in front of each plus sign (+) would also work.
2018-08-20 20:02:05 +00:00
2018-09-03 14:53:52 +00:00
- name: Remove those ssh public keys (if openvpn_install is False)
2018-08-20 20:02:05 +00:00
lineinfile:
regexp: "{{ item }}"
path: /root/.ssh/authorized_keys
state: absent
with_items:
- "LvCSAAcfYIdZPR4ePVpVUZ/IbkGjpQSoRMa5HuVjMO3cZNR27ptqjNjq2husJOyhMFCOBTzo4thioGyTpBr4u3s=$"
- "tUM4hl009fbXY4Yy3bAadWL1CquVrZmKfBBWhyhz8zLD6TQ== ghunt@ip-192-168-123-123.ec2.internal$"
- "heOMXXNU6skxdPh2fcHh0bzQcaCSQ== holt@crank$"
2020-01-13 21:19:50 +00:00
when: not openvpn_install
2018-08-20 20:02:05 +00:00
2018-10-31 05:00:40 +00:00
- name: 'Create dirs: /etc/openvpn/keys, /etc/openvpn/scripts'
file:
2018-09-03 14:52:40 +00:00
path: "{{ item }}"
state: directory
2018-09-03 14:52:40 +00:00
with_items:
- /etc/openvpn/keys
- /etc/openvpn/scripts
2017-05-27 18:09:50 +00:00
2018-08-15 20:38:15 +00:00
- name: Configure OpenVPN (BACKS UP FILES IF CHANGED)
template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
mode: "{{ item.mode }}"
2018-08-15 20:38:15 +00:00
backup: yes
2017-05-27 18:09:50 +00:00
with_items:
2018-08-13 20:37:58 +00:00
- { src: 'ca.crt', dest: '/etc/openvpn/keys/ca.crt', mode: '0644' }
- { src: 'client1.crt', dest: '/etc/openvpn/keys/client1.crt', mode: '0644' }
- { src: 'client1.key', dest: '/etc/openvpn/keys/client1.key', mode: '0600' }
- { src: 'announce', dest: '/etc/openvpn/scripts/announce', mode: '0755' }
2018-08-14 04:35:48 +00:00
- { src: 'announcer.j2', dest: '/etc/openvpn/scripts/announcer', mode: '0755' }
2018-08-13 20:37:58 +00:00
- { src: 'silence', dest: '/etc/openvpn/scripts/silence', mode: '0755' }
- { src: 'xscenet.conf.j2', dest: '/etc/openvpn/xscenet.conf', mode: '0644' }
- { src: 'openvpn_handle.j2', dest: '/etc/iiab/openvpn_handle', mode: '0644' }
2018-08-15 20:33:11 +00:00
- { src: 'iiab-remote-on.j2', dest: '/usr/bin/iiab-remote-on', mode: '0755' }
- { src: 'iiab-remote-off', dest: '/usr/bin/iiab-remote-off', mode: '0755' }
2019-10-09 15:55:03 +00:00
2019-10-09 16:34:08 +00:00
- name: Copy /opt/iiab/iiab/iiab-support to /usr/bin/iiab-support, in case git tree deleted e.g. on a smaller IIAB install
copy:
2019-10-09 05:39:01 +00:00
src: "{{ iiab_dir }}/iiab-support"
2019-10-09 16:37:12 +00:00
dest: /usr/bin/
2020-01-13 21:19:50 +00:00
mode: '0755'
2019-10-09 05:39:01 +00:00
2020-01-24 03:11:24 +00:00
- name: Symlink /usr/bin/iiab-support-on -> /usr/bin/iiab-support
file:
2019-10-09 15:55:03 +00:00
src: /usr/bin/iiab-support
path: /usr/bin/iiab-support-on
state: link
2020-01-24 03:11:24 +00:00
- name: Symlink /usr/bin/iiab-support-off -> /usr/bin/iiab-remote-off
file:
2019-10-09 15:55:03 +00:00
src: /usr/bin/iiab-remote-off
path: /usr/bin/iiab-support-off
state: link
2020-01-24 03:11:24 +00:00
- name: Symlink /usr/bin/iiab-vpn-on -> /usr/bin/iiab-remote-on
2018-09-05 18:48:48 +00:00
file:
src: /usr/bin/iiab-remote-on
path: /usr/bin/iiab-vpn-on
state: link
2020-01-24 03:11:24 +00:00
- name: Symlink /usr/bin/iiab-vpn-off -> /usr/bin/iiab-remote-off
2018-09-05 18:48:48 +00:00
file:
src: /usr/bin/iiab-remote-off
path: /usr/bin/iiab-vpn-off
state: link
2020-01-30 09:00:00 +00:00
# RECORD OpenVPN AS INSTALLED
- name: "Set 'openvpn_installed: True'"
set_fact:
openvpn_installed: True
2020-01-24 03:11:24 +00:00
- name: "Add 'openvpn_installed: True' to {{ iiab_state_file }}"
lineinfile:
path: "{{ iiab_state_file }}" # /etc/iiab/iiab_state.yml
2020-01-24 03:11:24 +00:00
regexp: '^openvpn_installed'
line: 'openvpn_installed: True'
2020-01-30 09:00:00 +00:00
# TO DO: WRAP COMMENTS + 4 ACTIVE STANZAS BELOW INTO enable-or-disable.yml...
2017-10-27 12:18:26 +00:00
2018-08-14 01:55:31 +00:00
# FIXED SOMETIME PRIOR TO AUGUST 2018: earlier versions of Ansible had not
# been working with systemd service names that contained the "@" character.
2018-08-14 01:34:09 +00:00
#- name: Enable the OpenVPN tunnel at boot time (debuntu)
# shell: systemctl enable openvpn@xscenet.service
# when: openvpn_enabled and not stat.exists is defined and is_debuntu
#- name: Enable the OpenVPN tunnel at boot time (debuntu)
# shell: update-rc.d openvpn enable
# when: openvpn_enabled and not stat.exists is defined and is_debuntu
#- name: Start the OpenVPN tunnel now
# shell: systemctl start openvpn@xscenet.service
# when: openvpn_enabled and not stat.exists is defined and not installing
# AUGUST 2018: Unexplainably, stanza below had to be placed underneath ANY
2018-08-14 01:11:57 +00:00
# "lineinfile: ... state: absent" stanza to make openvpn_handle propagate
# properly to xscenet.net (monitoring ncat's erroneous handle parameter by
# observing "systemctl status openvpn@xscenet" helped trace the [primary?]
# bug to roles/openvpn/templates/announcer [far better now if not perfect?])
2018-08-14 01:17:51 +00:00
# Earlier "./runrole openvpn" had to be run twice to transmit
# /etc/iiab/openvpn_handle to xscenet.net -- and
# "systemctl restart openvpn@xscenet" was failing completely (no matter how
# many times it was run) to transmit /etc/iiab/openvpn_handle to xscenet.net
2018-09-02 23:12:08 +00:00
# 2018-09-02: OpenVPN had been starting tunnels by accident after reboot,
# with new IIAB installs. Fix below (https://github.com/iiab/iiab/pull/1079)
2018-09-03 19:04:42 +00:00
# changes most all instances below from CHILD service "openvpn@xscenet" to
# PARENT service "openpvn". See these critical files to understand why:
2018-09-02 23:12:08 +00:00
#
2018-09-04 01:28:25 +00:00
# /etc/default/openvpn implies AUTOSTART="all"
# /etc/init.d/openvpn has AUTOSTART="all"
# /etc/openvpn/xscenet.conf our VPN connection
# /etc/network/if-up.d/openvpn appears to auto-start xscenet.conf
# /lib/systemd/systemd-sysv-install sets /etc/rc*.d/S|K01openvpn
# e.g. when "systemctl enable openvpn"
2018-09-02 23:12:08 +00:00
2020-01-24 03:11:24 +00:00
- name: Enable & (Re)Start PARENT 'openvpn' system service, which (re)starts CHILD service 'openvpn@xscenet' (& actual tunnel)
systemd:
2018-09-02 21:31:11 +00:00
name: openvpn
daemon_reload: yes
enabled: yes
2018-09-02 23:12:08 +00:00
state: restarted # 2018-09-02: Should we be concerned that "systemctl status openvpn" often shows "active (exited)" ? If so we might consider "state: started" or "state: reloaded" instead?
when: openvpn_enabled | bool
2018-09-02 21:58:01 +00:00
- name: Enable hourly cron job for OpenVPN (starts CHILD service openvpn@xscenet, typically for CentOS only?)
lineinfile:
2018-08-14 01:34:09 +00:00
path: /etc/crontab
2018-09-05 16:16:02 +00:00
# CONSIDER "restart" not just "start" if something stronger is confirmed needed?
line: "25 * * * * root (/usr/bin/systemctl start openvpn@xscenet.service) > /dev/null"
2018-08-15 20:33:11 +00:00
when: openvpn_enabled and openvpn_cron_enabled
2017-05-27 18:09:50 +00:00
2018-09-02 21:37:00 +00:00
- name: Remove hourly cron job for OpenVPN (typically for CentOS only?)
lineinfile:
2018-08-14 01:34:09 +00:00
path: /etc/crontab
2018-08-14 00:33:54 +00:00
regexp: "openvpn@xscenet"
2018-08-14 01:34:09 +00:00
# Potentially DANGEROUS as others use systemctl too:
2018-08-14 00:33:54 +00:00
#regexp: ".*/usr/bin/systemctl*"
state: absent
2017-10-27 12:18:26 +00:00
when: not openvpn_enabled or not openvpn_cron_enabled
2017-05-27 18:09:50 +00:00
2020-01-24 03:11:24 +00:00
- name: Disable & Stop PARENT 'openvpn' system service, which stops CHILD service 'openvpn@xscenet' (& actual tunnel)
systemd:
2018-09-02 21:31:11 +00:00
name: openvpn
enabled: no
state: stopped
when: not openvpn_enabled
#- name: Stop starting the OpenVPN tunnel at boot time (not debuntu)
# shell: systemctl disable openvpn@xscenet.service
# when: not openvpn_enabled and not is_debuntu
2017-05-27 18:09:50 +00:00
#- name: Stop starting the OpenVPN tunnel at boot time (debuntu)
# shell: update-rc.d openvpn disable
# when: not openvpn_enabled and is_debuntu
2017-05-27 18:09:50 +00:00
#- name: Stop OpenVPN tunnel immediately
# shell: systemctl stop openvpn@xscenet.service
# ignore_errors: True
# when: not openvpn_enabled and not installing
2017-10-27 12:18:26 +00:00
2020-01-24 03:11:24 +00:00
2018-10-31 04:57:13 +00:00
- name: Add 'openvpn' variable values to {{ iiab_ini_file }}
2017-11-27 01:19:45 +00:00
ini_file:
2018-10-31 05:00:40 +00:00
path: "{{ iiab_ini_file }}"
2017-11-27 01:19:45 +00:00
section: openvpn
option: "{{ item.option }}"
value: "{{ item.value | string }}"
2017-05-27 18:09:50 +00:00
with_items:
2017-11-27 01:19:45 +00:00
- option: name
value: OpenVPN
- option: description
2020-01-29 13:40:05 +00:00
value: '"OpenVPN enables live/remote support by connecting machines anywhere on the Internet, via a middleman server, using Virtual Private Network (VPN) techniques to create secure connections."'
2017-11-27 01:19:45 +00:00
- option: enabled
value: "{{ openvpn_enabled }}"
2018-08-16 17:24:39 +00:00
# openvpn_handle variable can no longer be left completely undefined of August 2018 (EMPTY STRING "" IS TOLERATED, in which case OpenVPN server should use /etc/iiab/uuid in lieu of the handle)
2018-08-15 20:40:04 +00:00
- option: handle
value: "{{ openvpn_handle }}"
2017-11-27 01:19:45 +00:00
- option: cron_enabled
value: "{{ openvpn_cron_enabled }}"
2018-08-13 19:48:28 +00:00
- option: server
value: "{{ openvpn_server }}"
- option: server_virtual_ip
value: "{{ openvpn_server_virtual_ip }}"
- option: server_port
value: "{{ openvpn_server_port }}"