<%=
nodeinfo = scope.lookupvar('site::nodeinfo')
-has_role = scope.function_has_role
out = []
restricted_purposes = ['kvm host', 'central syslog server', 'puppet master', 'jumphost']
ssh6allowed << "2001:41c8:1000:21::21:5" # adayevskaya
end
- if has_role('static_master') then
+ if scope.function_has_role('static_master') then
ssh4allowed << '$HOST_STATIC_V4'
ssh6allowed << '$HOST_STATIC_V6'
- elsif has_role('static_source') or has_role('static_mirror') then
+ elsif scope.function_has_role('static_source') or
+ scope.function_has_role('static_mirror') then
ssh4allowed << '$HOST_STATICMASTER_V4'
ssh6allowed << '$HOST_STATICMASTER_V6'
end
module Puppet::Parser::Functions
newfunction(:has_role, :type => :rvalue) do |args|
- begin
role = args.shift
roles = lookupvar('site::roles')
fqdn = lookupvar('fqdn')
if not roles.include?(role)
err "Failed to look up missing role #{role}"
- return False
+ return false
end
return roles[role].include?(fqdn)
end
- end
end