24ac553ca2
DConnect Daemon is a Direct Connect Hub clone for Unix. It allows people to share their resources, i.e.: programs, graphics, other files... Features: * fast, pure C implementation * libwrap support (hosts.allow, hosts.deny) * low per-user memory consumption * uses threads (no forking) * nick pattern matching * simple administration through telnet console WWW: http://www.dc.ds.pg.gda.pl/ PR: ports/81021 Submitted by: Aleksandr S. Goncharov <mraleks@bk.ru>
7 lines
164 B
Bash
7 lines
164 B
Bash
#!/bin/sh
|
|
|
|
[ "$2" != "POST-INSTALL" ] && exit 0
|
|
|
|
for f in %%CONF_FILES%%; do
|
|
[ -f "%%CONF_DIR%%/$f" ] || cp -p "%%CONF_DIR%%/$f.default" "%%CONF_DIR%%/$f"
|
|
done
|