aboutsummaryrefslogtreecommitdiff
path: root/share/templater/puppet_module
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-11-17 11:34:31 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-11-17 11:34:31 -0200
commitca223571c8548fda2e6571daf497482d8d236362 (patch)
tree86daa0f8eba8222b7d5ff85c0b4e101795b7c450 /share/templater/puppet_module
parentf6851134c07c74554437db5be4abb13cafafc1b6 (diff)
downloadtemplater-ca223571c8548fda2e6571daf497482d8d236362.tar.gz
templater-ca223571c8548fda2e6571daf497482d8d236362.tar.bz2
Rename __templater_ functions to templater_
Diffstat (limited to 'share/templater/puppet_module')
-rwxr-xr-xshare/templater/puppet_module/setup4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/templater/puppet_module/setup b/share/templater/puppet_module/setup
index d06f1dd..5e779ec 100755
--- a/share/templater/puppet_module/setup
+++ b/share/templater/puppet_module/setup
@@ -13,14 +13,14 @@ source $SHARE/templater/functions || exit 1
# Puppet module
function templater_puppet_module {
if [ ! -e "manifests/init.pp" ]; then
- __templater_echo "Setting up Puppet Module..."
+ templater_echo "Setting up Puppet Module..."
mkdir -p manifests
echo "class $PROJECT {" > manifests/init.pp
echo "}" >> manifests/init.pp
else
- __templater_echo "Puppet Module already set"
+ templater_echo "Puppet Module already set"
fi
}