Hi,
i couldn't reproduce your problem with Puppet 2.7.14 :
# tree /etc/puppet/modules
/etc/puppet/modules/
└── hola
└── manifests
└── init.pp
# cat /etc/puppet/modules/hola/manifests/init.pp
class hola( $mens = "HELLO" ) {
notify{"puppet": message => "$mens"}
}
# /usr/local/bin/enc.sh
---
classes:
hola:
mens: HOLA
parameters:
manager: Jane Doe
# puppet agent -t
notice: Ignoring --listen on onetime run
info: Retrieving plugin
info: Caching catalog for xxx
info: Applying configuration version 'x'
notice: HOLA
notice: /Stage[main]/Hola/Notify[puppet]/message: defined 'message' as 'HOLA'
notice: Finished catalog run in 0.03 seconds