Sha256: ccb27c5f17129c9b2b4071028969d28fd29161f8238d252d1d3e6e8b69f69b4f

Contents?: true

Size: 1.42 KB

Versions: 2

Compression:

Stored size: 1.42 KB

Contents

module PoolParty
  module Provisioner
    class Slave < ProvisionerBase

      def install_tasks
        [ 
          setup_puppet,
          setup_configs,
          run_once_and_clean
        ] << configure_tasks
      end

      def configure_tasks
        [          
          start_puppet
        ]
      end
      
      def setup_poolparty
        <<-EOE
echo "#{open(File.join(template_directory, "puppetrun")).read}" > /usr/bin/puppetrun
        EOE
      end

      def setup_puppet
        <<-EOE
          if [ -z "$(grep -v '#' /etc/hosts | grep 'master')" ]; then echo "#{master_ip} puppet master" >> /etc/hosts; else echo "host already set"; fi
          cp #{Base.remote_storage_path}/namespaceauth.conf /etc/puppet/namespaceauth.conf
        EOE
      end

      def setup_configs
        <<-EOS          
          echo "#{open(File.join(template_directory, "puppet.conf")).read}" > /etc/puppet/puppet.conf
          /etc/init.d/puppetmaster stop #{unix_hide_string}
          # /usr/bin/puppetrerun
        EOS
      end
      
      def run_once_and_clean
        <<-EOS
rm -rf /etc/puppet/ssl        
/bin/sh /usr/bin/puppetrerun
rm -rf /etc/puppet/ssl
        EOS
      end

      # /etc/init.d/puppetmasterd stop
      # puppetd --listen --fqdn #{@instance.name}
      def start_puppet
        <<-EOS
/bin/sh /usr/bin/puppetrerun
        EOS
      end
      
      def master_ip
        @cloud.master.ip
      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
auser-poolparty-0.2.59 lib/poolparty/helpers/provisioners/slave.rb
auser-poolparty-0.2.60 lib/poolparty/helpers/provisioners/slave.rb