Project

General

Profile

Download (941 Bytes) Statistics
| Branch: | Tag: | Revision:
<%#
kind: user_data
name: Community Preseed UserData
oses:
- Debian 6.0
- Debian 7.0
- Ubuntu 12.04
%>
#!/bin/bash

<%# Cloud instances frequently have incorrect hosts data %>
<%= snippet "fix_hosts" %>

<%
# safemode renderer does not support unary negation
pm_set = @host.puppetmaster.empty? ? false : true
puppet_enabled = pm_set || @host.params['force-puppet']
%>
<% if puppet_enabled %>
apt-get update
apt-get install -y puppet
cat > /etc/puppet/puppet.conf << EOF
<%= snippet "puppet.conf" %>
EOF
/bin/sed -i 's/^START=no/START=yes/' /etc/default/puppet
/bin/touch /etc/puppet/namespaceauth.conf
/usr/bin/puppet agent --config /etc/puppet/puppet.conf --onetime --tags no_such_tag <%= @host.puppetmaster.blank? ? "" : "--server #{@host.puppetmaster}" %> --no-daemonize
<% end -%>

# UserData still needs wget to mark as finished
/usr/bin/wget --quiet --output-document=/dev/null --no-check-certificate <%= foreman_url('built') %>
(7-7/7)