diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-08-14 14:05:22 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-08-14 14:05:22 -0300 |
commit | 347a70abc035e85efa142241ffa4b9a4ea728560 (patch) | |
tree | a19de73f7f8173f233d9c7701646601edf05aea8 | |
parent | 71fe930f19e9c4026009aa4722486c39a8259339 (diff) | |
download | puppet-puppet-347a70abc035e85efa142241ffa4b9a4ea728560.tar.gz puppet-puppet-347a70abc035e85efa142241ffa4b9a4ea728560.tar.bz2 |
Template fix
-rw-r--r-- | templates/puppet.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/puppet.erb b/templates/puppet.erb index 3b85c50..4fa19e6 100644 --- a/templates/puppet.erb +++ b/templates/puppet.erb @@ -1,7 +1,7 @@ # Defaults for puppet - sourced by /etc/init.d/puppet # Start puppet on boot? -START=<?= start_on_boot ? "yes" : "no" ?> +START=<%= start_on_boot ? "yes" : "no" %> # Startup options DAEMON_OPTS="" |