View | Details | Raw Unified | Return to bug 240129 | Differences between
and this patch

Collapse All | Expand All

(-)irc/inspircd/files/pkg-deinstall.in (-22 lines)
Lines 1-22 Link Here
1
#!/bin/sh
2
# $FreeBSD$
3
4
case $2 in
5
POST-DEINSTALL)
6
    cat <<EOMSG
7
8
To completely remove %%PORTNAME%%, you may wish to
9
remove its configuration, database and log directories:
10
11
    # rm -rf %%ETCDIR%% \\
12
        %%INSPIRCD_DBDIR%% \\
13
        %%INSPIRCD_LOGDIR%% \\
14
        %%INSPIRCD_RUNDIR%%
15
16
To remove the %%INSPIRCD_USER%% user and the %%INSPIRCD_GROUP%% group, run:
17
18
    # pw groupdel %%INSPIRCD_GROUP%%
19
    # pw userdel %%INSPIRCD_USER%%
20
21
EOMSG
22
esac
(-)irc/inspircd/files/pkg-message.in (+29 lines)
Line 0 Link Here
1
[
2
{
3
  type: upgrade,
4
  maximum_version: 3,
5
  message: <<EOM
6
InspIRCd v3 has many configuration changes that are not backwards
7
compatible with InspIRCd v2. Please review
8
https://docs.inspircd.org/3/configuration-changes/ and update your
9
configuration files accrdingly.
10
EOM
11
}
12
{
13
  type: remove,
14
  message: <<EOM
15
To completely remove %%PORTNAME%%, you may wish to remove its
16
configuration, database and log directories:
17
18
    # rm -rf %%ETCDIR%% \\
19
        %%INSPIRCD_DBDIR%% \\
20
        %%INSPIRCD_LOGDIR%% \\
21
        %%INSPIRCD_RUNDIR%%
22
23
To remove the %%INSPIRCD_USER%% user and the %%INSPIRCD_GROUP%% group, run:
24
25
    # pw groupdel %%INSPIRCD_GROUP%%
26
    # pw userdel %%INSPIRCD_USER%%
27
EOM
28
}
29
]
(-)irc/inspircd/pkg-message (-6 lines)
Lines 1-6 Link Here
1
========================================================================
2
InspIRCd v3 has many configuration changes that are not backwards
3
compatible with InspIRCd v2. If you are upgrading from v2, please review
4
https://docs.inspircd.org/3/configuration-changes/ and update your
5
configuration files accrdingly.
6
========================================================================

Return to bug 240129