aboutsummaryrefslogtreecommitdiff
path: root/bin/slsf
blob: c40e342ac4f6abaef6b77d343a0927c6fb1dd6b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/awk -f

# Manage the processing flag (starts set in each file)
FNR == 1 || /### sls/ { sls = 1 }
/### nosls/ { sls = 0 }

# If processing flag set, directive is "Host", and hostname has no wildcards,
# then print it
!sls { next }
$1 == "Host" && $2 !~ /\*/ { print $2 }