- Convert to USES - Use shebangfix where necessary - Move most @exec/@unexec commands from plist to pkg-install/pkg-deinstall scripts - Make rclint somewhat happier - Convert to new LIB_DEPENDS format - Strip binaries - Take maintainership
11 lines
246 B
Bash
11 lines
246 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "x$2" = "xPOST-INSTALL" ]; then
|
|
mkdir -p %%SPOOLDIR%%/incoming %%SPOOLDIR%%/outgoing \
|
|
%%SPOOLDIR%%/checked %%LOGDIR%% %%PIDDIR%%
|
|
chown -R %%SMSD_USER%%:%%SMSD_GROUP%% %%SPOOLDIR%% \
|
|
%%LOGDIR%% %%PIDDIR%%
|
|
fi
|