aboutsummaryrefslogtreecommitdiffstats
path: root/modules/xinetd/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'modules/xinetd/manifests')
-rw-r--r--modules/xinetd/manifests/port_forward.pp2
-rw-r--r--modules/xinetd/manifests/service.pp2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/xinetd/manifests/port_forward.pp b/modules/xinetd/manifests/port_forward.pp
index 23d00f03..2717466e 100644
--- a/modules/xinetd/manifests/port_forward.pp
+++ b/modules/xinetd/manifests/port_forward.pp
@@ -1,6 +1,6 @@
define xinetd::port_forward($target_ip, $target_port, $port, $proto = 'tcp') {
include xinetd
- file { "/etc/xinetd.d/$name":
+ file { "/etc/xinetd.d/${name}":
require => Package['xinetd'],
content => template('xinetd/port_forward'),
notify => Service['xinetd']
diff --git a/modules/xinetd/manifests/service.pp b/modules/xinetd/manifests/service.pp
index 23ebeedf..24caafd9 100644
--- a/modules/xinetd/manifests/service.pp
+++ b/modules/xinetd/manifests/service.pp
@@ -1,6 +1,6 @@
define xinetd::service($content) {
include xinetd
- file { "/etc/xinetd.d/$name":
+ file { "/etc/xinetd.d/${name}":
require => Package['xinetd'],
content => $content,
notify => Service['xinetd']