Skip to content

Instantly share code, notes, and snippets.

@johndstein
Created June 7, 2014 03:52
Show Gist options
  • Save johndstein/d60146b691fbc5705b21 to your computer and use it in GitHub Desktop.
Save johndstein/d60146b691fbc5705b21 to your computer and use it in GitHub Desktop.
Ansible install zeromq 4
# probably a better more ansible way.
---
- name: Install zeromq 4.0.4
sudo: yes
shell: >
bash -c "wget http://download.zeromq.org/zeromq-4.0.4.tar.gz
&& tar xf zeromq-4.0.4.tar.gz
&& cd zeromq-4.0.4
&& ./configure
&& make
&& make install
&& cd ..
&& rm -rf zeromq-4.0.4*"
creates=/usr/local/include/zmq.h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment