summaryrefslogtreecommitdiff
path: root/japanese/okphone/pkg-install
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1996-02-08 04:54:18 +0000
committerSatoshi Asami <asami@FreeBSD.org>1996-02-08 04:54:18 +0000
commitda379a05915df305e47c9034191255cb3c19ea0a (patch)
tree4bf6725022c8d44d630e3672843edbe640f01fef /japanese/okphone/pkg-install
parentComment said this script is for Wnn. Now you know where I copied (diff)
Japanese phone (conference call).
Notes
Notes: svn path=/head/; revision=2695
Diffstat (limited to 'japanese/okphone/pkg-install')
-rw-r--r--japanese/okphone/pkg-install21
1 files changed, 21 insertions, 0 deletions
diff --git a/japanese/okphone/pkg-install b/japanese/okphone/pkg-install
new file mode 100644
index 000000000000..0919294b3c06
--- /dev/null
+++ b/japanese/okphone/pkg-install
@@ -0,0 +1,21 @@
+#!/bin/sh
+# installation script for okphone
+if [ "$2" != "POST-INSTALL" ]; then
+ exit 0
+fi
+if ! grep -qw ^phone /etc/services; then
+ echo ""
+ echo "I don't see \"phone\" in your /etc/services file."
+ echo "You may want to add the following to your /etc/services."
+ echo ""
+ echo "phone 1167/udp #phone - conference calling"
+ echo ""
+fi
+if ! grep -qw ^phone /etc/inetd.conf; then
+ echo ""
+ echo "I don't see \"phone\" in your /etc/inetd.conf file."
+ echo "You may want to add the following to your /etc/inetd.conf."
+ echo ""
+ echo "phone dgram udp wait root /usr/local/libexec/in.phoned in.phoned"
+ echo ""
+fi