aboutsummaryrefslogtreecommitdiffstats
path: root/fixpamd
blob: 3bc042a4f9cfad0be9dbfb9bbdc73638aa6c94f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

if test -z "$DONT_FIX_PAMD_CONFIGS"; then
    configs=`ls $RPM_BUILD_ROOT/etc/pam.d/* 2> /dev/null`
    if [ -n "$configs" ]; then
        echo -n "Fixing pam.d config files..."
        perl -pi -e "s,/(lib|lib64)/security/,," $configs
        echo "done"
    fi
fi