Browse Source

Merge pull request #292 from catern/master

ZNC: don't make install if configure or make fail
Luke Cyca 10 years ago
parent
commit
ba2ce5a89c
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

23
   command: tar xzf /root/znc-{{ znc_version }}.tar.gz chdir=/root creates=/root/znc-{{ znc_version }}/configure
23
   command: tar xzf /root/znc-{{ znc_version }}.tar.gz chdir=/root creates=/root/znc-{{ znc_version }}/configure
24
 
24
 
25
 - name: Build and install znc
25
 - name: Build and install znc
26
-  shell: ./configure --enable-python ; make ; make install executable=/bin/bash chdir=/root/znc-{{ znc_version }} creates=/usr/local/bin/znc
26
+  shell: ./configure --enable-python && make && make install executable=/bin/bash chdir=/root/znc-{{ znc_version }} creates=/usr/local/bin/znc
27
   notify: restart znc
27
   notify: restart znc
28
 
28
 
29
 - name: Create znc group
29
 - name: Create znc group

Loading…
Cancel
Save