Browse Source

Fix znc download URL

This URL works for all releases, not just the latest one.
Luke Cyca 11 years ago
parent
commit
0877ee4a89
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      roles/ircbouncer/tasks/znc.yml

+ 1
- 1
roles/ircbouncer/tasks/znc.yml View File

@@ -17,7 +17,7 @@
17 17
     - libperl-dev
18 18
 
19 19
 - name: Download znc release
20
-  get_url: url=http://znc.in/releases/znc-${znc_version}.tar.gz dest=/root/znc-${znc_version}.tar.gz
20
+  get_url: url=http://znc.in/releases/archive/znc-${znc_version}.tar.gz dest=/root/znc-${znc_version}.tar.gz
21 21
 
22 22
 - name: Decompress znc source
23 23
   command: tar xzf /root/znc-${znc_version}.tar.gz chdir=/root creates=/root/znc-${znc_version}/configure

Loading…
Cancel
Save