aboutsummaryrefslogtreecommitdiffstats
path: root/system_cmds/zic.tproj/generate_zone_file_list.sh
blob: c28c4da02d7f0e7435bd04efd4a6563c180d0fbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
set -e
set -x

# we need to know where the data files are...
if [ $# -ne 1 ]; then
    echo "Usage: $0 DATA_FILES_DIR" 1>&2
    exit 1
fi

DATFILES="$1"
ZONE_FILES="$(egrep --files-with-match '^(Zone|Rule|Link)' "${DATFILES}"/* | awk -F "/" '{print $NF}')"

for tz in ${ZONE_FILES}; do
    if [ ${tz} = "backward" ]; then
        DO_BACKWARD=1
        continue
    elif [ ${tz} = "backzone" ]; then
        continue
    else
        echo "${tz}"
    fi
done

if [ -n "$DO_BACKWARD" ]; then
    echo "backward"
fi