summaryrefslogtreecommitdiff
path: root/functions/repack.pp
blob: 396354c20538169c0bd01427ff4f16157cc37e35 (plain)
1
2
3
4
5
6
7
# Normalizes a hash or a list of hashes to a list of hashes
function networking::repack(Variant[Hash, Array[Hash]] $data) >> Array[Hash] {
  $data ? {
    Hash => [$data],
    _    => $data,
  }
}