Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Dec 2017 02:29:04 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r456702 - head/irc/inspircd/files
Message-ID:  <201712190229.vBJ2T4pM044411@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Tue Dec 19 02:29:04 2017
New Revision: 456702
URL: https://svnweb.freebsd.org/changeset/ports/456702

Log:
  irc/inspircd: Modernize port (adding files/pkg-deinstall.in)
  
  Addition to r456675: the new file files/pkg-deinstall.in has
  been approved, but hasn't been added in r456675.
  
  PR:		224041
  Submitted by:	Dmitri Goutnik <dg@syrec.org> (maintainer)
  Approved by:	adamw (mentor)
  Differential Revision:	https://reviews.freebsd.org/D13345

Added:
  head/irc/inspircd/files/pkg-deinstall.in   (contents, props changed)

Added: head/irc/inspircd/files/pkg-deinstall.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/irc/inspircd/files/pkg-deinstall.in	Tue Dec 19 02:29:04 2017	(r456702)
@@ -0,0 +1,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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712190229.vBJ2T4pM044411>