aboutsummaryrefslogtreecommitdiffstats
path: root/mail/spamd/pkg-install
blob: 04735528070efbe31e5058314c6b66a4b3d8242f (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#!/bin/sh
# an installation script for spamd copied from pf_freebsd

ask() {
    local question default answer

    question=$1
    default=$2
    if [ -z "${PACKAGE_BUILDING}" ]; then
    read -p "${question} (y/n) [${default}]? " answer
    fi
    if [ x${answer} = x ]; then
    answer=${default}
    fi
    echo ${answer}
}

yesno() {
    local dflt question answer

    question=$1
    dflt=$2
    while :; do
    answer=$(ask "${question}" "${dflt}")
    case "${answer}" in
    [Yy]*)      return 0;;
    [Nn]*)      return 1;;
    esac
    echo "Please answer yes or no."
    done
}

check_service() {
    local name number type comment
    
    name=$1
    number=$2
    type=$3
    comment=$4
    
    FILE="/etc/services"
    # check
    OK=no
    HAS_SERVICE=no
    COUNT=1
    for i in `grep $name $FILE `; do
    if [ $COUNT = 1 ] && [ X"$i" = X"$name" ]; then
        HAS_SERVICE=yes
    elif [ $COUNT = 2 ] && [ $HAS_SERVICE = yes ] && \
        [ X"$i" = X"$number/$type" ]; then
        OK=yes
        break
    fi
    COUNT=`expr ${COUNT} + 1`
    done
    # add an entry for SERVICE to /etc/services
    if [ $OK = no ]; then
    echo "This system has no entry for $name in ${FILE}"
    if yesno "Would you like to add it automatically?" y; then
        mv ${FILE} ${FILE}.bak
        (grep -v $name ${FILE}.bak ; \
        echo "$name $number/$type   # $comment") \
        >> ${FILE}
        rm ${FILE}.bak
    else
        echo "Please add '$name $number/$type' into ${FILE}, and try again."
        return 1
    fi
    fi
    return 0
}

case $2 in
PRE-INSTALL)

    if ! check_service spamd 8025 tcp "# spamd(8)"; then
    exit 1
    fi
    if ! check_service spamd-cfg 8026 tcp "# spamd(8) configuration"; then
    exit 1
    fi
    ;;

esac