Remove the installation and execution of puppet agent

The installation of the puppet agent is now done in the common
role, plus the execution of the puppet agent is now done
via the run_on_<service> top-level playbooks.
This commit is contained in:
Ricardo Carrillo Cruz 2015-08-27 10:37:06 +02:00
parent 3af892b696
commit 3483441ee7

View File

@ -2,9 +2,7 @@
- name: Install required packages - name: Install required packages
apt: name={{ item }} state=installed apt: name={{ item }} state=installed
with_items: with_items:
- puppet
- puppetmaster-passenger - puppetmaster-passenger
- puppetmaster
- python-paramiko - python-paramiko
- name: Download install_modules.sh script - name: Download install_modules.sh script
@ -98,11 +96,8 @@
- name: Start puppet agent service - name: Start puppet agent service
service: name=puppet enabled=yes state=started service: name=puppet enabled=yes state=started
- name: Start puppet agent - name: Start apache2 for Puppetmaster passenger
service: name=puppetmaster enabled=yes state=started service: name=apache2 enabled=yes state=started
- name: Enable puppet agent, as it is disabled upon installation - name: Enable puppet agent, as it is disabled upon installation
command: puppet agent --enable command: puppet agent --enable
- name: Run puppet agent to apply configuration
puppet: