This commit is contained in:
2025-08-26 08:11:42 +02:00
parent 18e2a5368d
commit 67c8d5ea09
189 changed files with 8108 additions and 980 deletions

15
system/sudo/pkg-install Normal file
View File

@@ -0,0 +1,15 @@
#!/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