summaryrefslogtreecommitdiff
path: root/functions/ensure_ending_period.pp
blob: 76c000383030c7d9c61292eeb1de41462c95a26e (plain)
1
2
3
4
5
6
7
8
# Adds a period to end of string if not already present
function dns::ensure_ending_period(String $s) >> String {
  if $s[-1] == '.' {
    $s
  } else {
    "${s}."
  }
}