mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
16 lines
267 B
Bash
16 lines
267 B
Bash
#!/bin/sh
|
|
set -x
|
|
|
|
PREFIX=${PKG_PREFIX}
|
|
|
|
case $2 in
|
|
PRE-INSTALL)
|
|
install -d -o root -g wheel -m 0750 /var/db/sudo
|
|
install -d -o root -g wheel -m 0750 /var/run/sudo
|
|
install -d -o root -g wheel -m 0750 ${PREFIX}/etc/sudoers.d
|
|
;;
|
|
POST-INSTALL)
|
|
;;
|
|
esac
|
|
#EOF
|