Skip to content

Commit 96441ec

Browse files
author
Nathan Ward
committed
Fix $subscribe overloading
1 parent 617cf5d commit 96441ec

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

manifests/requirements.pp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@
8989
replace => false,
9090
content => '# Puppet will install and/or update pip packages listed here',
9191
}
92-
$subscribe = File[$requirements]
92+
$local_subscribe = File[$requirements]
9393
} else {
94-
$subscribe = undef
94+
$local_subscribe = undef
9595
}
9696

9797
exec { "python_requirements${name}":
@@ -101,7 +101,7 @@
101101
timeout => $timeout,
102102
cwd => $cwd,
103103
user => $owner,
104-
subscribe => $subscribe,
104+
subscribe => $local_subscribe,
105105
environment => $environment,
106106
}
107107
}

0 commit comments

Comments
 (0)