summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2005-12-02 01:26:12 +0000
committerRuss Allbery <rra@stanford.edu>2005-12-02 01:26:12 +0000
commitd4af22f29bacc8f2b3f4105a3be6336b810c0c0a (patch)
tree0c6fd399e49cfcb586ed0e66e6db241aab0293c6
parent89d8d3c1436c185ddc52af21364c77d920596574 (diff)
* remctl-server now enables remctld by default.
-rw-r--r--debian/changelog3
-rwxr-xr-xdebian/remctl-server.postinst2
2 files changed, 3 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index f12b84c..c62853e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,6 +8,7 @@ remctl (1.10-1) unstable; urgency=low
reducing unnecessary package dependencies.
* Build separate remctl-server and remctl-client packages (with a remctl
transitional package for upgrades).
+ * remctl-server now enables remctld by default.
* Run remctld under tcpd and depend on tcpd.
* Use a better method to optionally run make distclean.
* Remove unused targets in debian/rules.
@@ -18,7 +19,7 @@ remctl (1.10-1) unstable; urgency=low
* Update maintainer address.
* Update standards version to 3.6.2 (no changes required).
- -- Russ Allbery <rra@debian.org> Thu, 1 Dec 2005 16:52:27 -0800
+ -- Russ Allbery <rra@debian.org> Thu, 1 Dec 2005 17:26:08 -0800
remctl (1.9-1) unstable; urgency=high
diff --git a/debian/remctl-server.postinst b/debian/remctl-server.postinst
index e9aedd3..62ffb46 100755
--- a/debian/remctl-server.postinst
+++ b/debian/remctl-server.postinst
@@ -8,7 +8,7 @@ configure)
# Only try to add the inetd line on an initial installation.
if [ -z "$2" ] || [ x"$2" = x"<unknown>" ] ; then
update-inetd --add \
- '#4444\t\tstream\ttcp\tnowait\troot\t/usr/sbin/tcpd /usr/sbin/remctld'
+ '4444\t\tstream\ttcp\tnowait\troot\t/usr/sbin/tcpd /usr/sbin/remctld'
fi
;;