
This reverts commit 2614e5fa95aab680fb6f9287831e50c65f76f72c. The repository is actually maintained, the authors merely misunderstood the stackforge namespace retirement maintenance announcements[1] and didn't realize they needed to notify us of that status. Reverting the repository to its former state in preparation for a namespace move in a coming project rename maintenance. [1] http://lists.openstack.org/pipermail/openstack-infra/2015-August/003119.html Change-Id: I6ccdcd8f8a084711c265e42c77b3b4159af27b24
31 lines
803 B
YAML
31 lines
803 B
YAML
---
|
|
|
|
- name: install git
|
|
apt: name=git
|
|
state=installed
|
|
update_cache=yes
|
|
|
|
- name: fact of chef-server
|
|
shell: dpkg -l
|
|
register: packages
|
|
|
|
# get precise chef-server deb pkg if ubuntu is 12.04
|
|
- name: get chef-server
|
|
get_url: url={{ chef_server_precise }}
|
|
dest=/tmp/chef-server.deb
|
|
when: "'chef-server' not in packages.stdout and ansible_distribution_major_version == '12'"
|
|
|
|
- name: install chef-server
|
|
apt: deb=/tmp/chef-server.deb
|
|
state=installed
|
|
|
|
- name: get chef-client
|
|
get_url: url={{ chef_client_precise }}
|
|
dest=/tmp/chef-client.rpm
|
|
when: "'chef' not in packages.stdout and ansbile_distribution_major_version == '12'"
|
|
|
|
- name: install chef-client
|
|
apt: deb=/tmp/chef-client.deb
|
|
state=installed
|
|
when: "'chef' not in packages.stdout"
|