Sha256: 863b281a5d74df5d6a44162fa605c638060d158678239a57aaa79f4e223b9e7d
Contents?: true
Size: 638 Bytes
Versions: 15
Compression:
Stored size: 638 Bytes
Contents
--- - hosts: local connection: local vars: version: 2.8.4 tasks: - name: Download redis source get_url: dest=/usr/src/redis-{{version}}.tar.gz url=http://download.redis.io/releases/redis-{{version}}.tar.gz - name: Unpack redis source command: tar -C /usr/src -xzf /usr/src/redis-{{version}}.tar.gz creates=/usr/src/redis-{{version}} - name: Build redis from source command: chdir=/usr/src/redis-{{version}} make creates=/usr/src/redis-{{version}}/src/redis-server - name: Install redis from source command: chdir=/usr/src/redis-{{version}} make install creates=/usr/local/bin/redis-server
Version data entries
15 entries across 15 versions & 1 rubygems