#!/bin/sh # # Adapted from irc/ircd-hybrid's script # #----------------------------------------------------------------------- if [ "x$2" = "xPRE-INSTALL" ]; then #----------------------------------------------------------------------- # ${DO_NADA} #----------------------------------------------------------------------- elif [ "x$2" = "xPOST-INSTALL" ]; then #----------------------------------------------------------------------- lf="%%LOGDIR%%/ratbox-services.log" touch $lf \ && chown ircservices:ircservices $lf \ && chmod 640 $lf cd %%DATADIR%% \ && %%PERL%% ./generate-schema.pl #----------------------------------------------------------------------- fi #----------------------------------------------------------------------- exit 0