mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
f127cb6576
Drop .sh extension from RC script. Drop MD5 checksum from distinfo. Switch from adding & removing users by hand to using USERS & GROUPS. Dont remove data gathered by app on uninstall, notify user to do it manually should they wish to. PR: ports/152225, ports/152226 Submitted by: Sevan Janiyan <venture37@geeklan.co.uk> Approved by: pauls@utdallas.edu (maintainer timeout)
11 lines
124 B
Bash
11 lines
124 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" != "POST-INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
PATH=/bin:/usr/sbin
|
|
LOG_DIR=/var/log/sancp
|
|
|
|
chmod 750 ${LOG_DIR}
|