df5a274627
- Support the alpha platform (although it is still at version 99.1) - Install p4ftpd - Create a non-privileged user and run p4d as the user - Dig directories and make the port plug-and-play - Change the configuration file's name to perforce.conf - Do not unconditionally remove perforce.conf on deinstall - Make almost all parameters (including directory layouts and user/group names) configurable via make variables - Make the startup script support "restart" - Take over the maintainership Approved by: Samuel Tardieu <sam@inf.enst.fr> (ex. MAINTAINER)
4 lines
224 B
Text
4 lines
224 B
Text
@unexec if cmp -s %D/etc/perforce.conf %D/etc/perforce.conf.default; then rm -f %D/etc/perforce.conf; fi
|
|
etc/perforce.conf.default
|
|
@exec [ ! -f %B/perforce.conf ] && cp -p %B/%f %B/perforce.conf || true
|
|
etc/rc.d/perforce.sh
|