summaryrefslogtreecommitdiff
path: root/security/sudo/pkg-install
blob: b633da87b2700c80ffffeb616d5051a31678b91d (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
if [ $2 != "POST-INSTALL" ]; then
  exit 0
fi
if [ -e ${PKG_PREFIX}/etc/sudoers ]; then
  echo "Will not overwrite existing ${PKG_PREFIX}/etc/sudoers file."
else
  cp -p ${PKG_PREFIX}/etc/sudoers.sample ${PKG_PREFIX}/etc/sudoers
fi