aboutsummaryrefslogtreecommitdiff
path: root/security/snortsam/files/pkg-install.in
blob: dfafcc7ef509e5bb72a2f21b2d0c2243440c6ff5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
#
# $FreeBSD$

ETCDIR=${ETCDIR:=%%ETCDIR%%}

# snortsam config file contain sensitive data like 
# passwords needed to block IP's on the firewalls.
# Set permission of the config dir to 700 so only
# root:wheel can access this directory.
if [ "$2" = "POST-INSTALL" ]; then
    if [ -d ${ETCDIR} ]; then
        /usr/sbin/chown root:wheel ${ETCDIR}
        /bin/chmod 700 ${ETCDIR}
    fi
fi