aboutsummaryrefslogtreecommitdiffstats
path: root/irc/inspircd/files/pkg-deinstall.in
blob: 8646e9ca08a44b1533734ad30ee97338e9362b37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
# $FreeBSD$

case $2 in
POST-DEINSTALL)
    cat <<EOMSG

To completely remove %%PORTNAME%%, you may wish to
remove its configuration, database and log directories:

    # rm -rf %%ETCDIR%% \\
        %%INSPIRCD_DBDIR%% \\
        %%INSPIRCD_LOGDIR%% \\
        %%INSPIRCD_RUNDIR%%

To remove the %%INSPIRCD_USER%% user and the %%INSPIRCD_GROUP%% group, run:

    # pw groupdel %%INSPIRCD_GROUP%%
    # pw userdel %%INSPIRCD_USER%%

EOMSG
esac