Skip to content

Commit c2bc942

Browse files
author
staticsafe
committed
let's try without the loop then
1 parent f5e3418 commit c2bc942

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

ircd-copyssl.yml

+10-11
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33
user: ircd
44
gather_facts: no
55
tasks:
6-
- name: Copy SSL files to correct directory on ircd nodes
6+
- name: Copy SSL certificate to correct directory on ircd nodes
77
copy:
8-
src: "{{ item.src }}"
9-
dest: "{{ item.dest }}"
8+
src: '/etc/ssl/localcerts/namecheap/entropynet.net-2019/irc.entropynet.net.crt'
9+
dest: '/home/ircd/ssl/entropynet/namecheap/irc.entropynet.net.crt'
1010
backup: yes
11-
notify:
12-
- rehash ircds
13-
loop:
14-
- { src: "/etc/ssl/localcerts/namecheap/entropynet.net-2019/irc.entropynet.net.crt", dest: "/home/ircd/ssl/entropynet/namecheap/irc.entropynet.net.crt" }
15-
- { src: "/etc/ssl/localcerts/namecheap/entropynet.net-2019/irc.entropynet.net.key", dest: "/home/ircd/ssl/entropynet/namecheap/irc.entropynet.net.key" }
16-
handlers:
17-
- name: rehash ircds
18-
shell: pkill -HUP -F ~/ircd/etc/ircd.pid
11+
- name: Copy SSL key to correct directory on ircd nodes
12+
copy:
13+
src: '/etc/ssl/localcerts/namecheap/entropynet.net-2019/irc.entropynet.net.key'
14+
dest: '/home/ircd/ssl/entropynet/namecheap/irc.entropynet.net.key'
15+
backup: yes
16+
- name: Rehash ircdnodes
17+
shell: pkill -HUP -F ~/ircd/etc/ircd.pid

0 commit comments

Comments
 (0)