]> arthur.barton.de Git - netatalk.git/commitdiff
CNID backend mtab has already gone.
authorHAT <hat@fa2.so-net.ne.jp>
Wed, 31 Aug 2011 13:28:48 +0000 (22:28 +0900)
committerHAT <hat@fa2.so-net.ne.jp>
Wed, 31 Aug 2011 13:28:48 +0000 (22:28 +0900)
configure.in
contrib/shell_utils/.gitignore
contrib/shell_utils/Makefile.am
contrib/shell_utils/afpd-mtab.pl.in [deleted file]

index d78cfa514aa346974e12c871843ede7a6b113e7e..d8ca34c94da3e2c42424c10f478f8a55b6b57be8 100644 (file)
@@ -1302,20 +1302,19 @@ AC_OUTPUT([Makefile
        bin/cnid/cnid2_create
        bin/getzones/Makefile
        bin/megatron/Makefile
-    bin/misc/Makefile
+       bin/misc/Makefile
        bin/nbp/Makefile
        bin/pap/Makefile
        bin/psorder/Makefile
        bin/uniconv/Makefile
        config/Makefile
-    config/pam/Makefile
+       config/pam/Makefile
        contrib/Makefile
        contrib/macusers/Makefile
        contrib/macusers/macusers
        contrib/printing/Makefile
        contrib/shell_utils/Makefile
-       contrib/shell_utils/afpd-mtab.pl
-    contrib/shell_utils/apple_dump
+       contrib/shell_utils/apple_dump
        contrib/shell_utils/asip-status.pl
        contrib/timelord/Makefile
        contrib/a2boot/Makefile
index 97941431cfb08e22c4630f89f31c94687c2428e0..c2af4d0e544e6c525088624bf689a6e12519089c 100644 (file)
@@ -1,6 +1,5 @@
 Makefile
 Makefile.in
-afpd-mtab.pl
 apple_cleanup
 apple_cp
 apple_mv
index c8cefe1e8ef8c8d0520b3c673e79474f43db1601..6ae8b2771c00e971a37b0d010e1deccc16ecf3b4 100644 (file)
@@ -5,7 +5,6 @@ pkgconfdir = @PKGCONFDIR@
 GENERATED_FILES = lp2pap.sh
 TEMPLATE_FILES = lp2pap.sh.tmpl
 PERLSCRIPTS = \
-       afpd-mtab.pl \
        asip-status.pl \
        apple_dump
 
diff --git a/contrib/shell_utils/afpd-mtab.pl.in b/contrib/shell_utils/afpd-mtab.pl.in
deleted file mode 100644 (file)
index 798af37..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#!@PERL@
-#
-# $Id: afpd-mtab.pl.in,v 1.1 2002-01-17 05:59:25 srittau Exp $
-#
-# Create an afpd.mtab on standard output from the mtab-format file on standard
-# input.
-#
-#      afpd-mtab.pl < /etc/mtab > /etc/afpd.mtab
-#
-#    Modification history:
-#
-# created.  -- rgr, 9-Apr-01.
-#
-
-print("# afpd.mtab, generated by afpd-mtab.pl on ",
-      `date`);
-while (<>) {
-    ($device, $mount_point, $fstype) = split;
-    next
-       if $device eq 'none' || $mount_point eq '/boot';
-    printf("%2d %-10s %s\n", ++$did_index, $device, $mount_point);
-}