From 4a84b51830467ee192cd6bddc0857ad08f6e7ae4 Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Fri, 27 Jul 2012 00:00:14 +0200 Subject: man: add ArchLinux(7) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This outlines what files needs to be configured to get a well-behaved system. For now it is extremely terse, but the main point is to work as a check-list, and to point people to the correct manpages to learn more. I'll be happy to take patches to extend this in the future. One might argue that this sholud not be part of initscripts, and we might indeed move it to 'filesystem' or something like that in the future. For the time being I'll keep it here for convenience. Suggested-by: Thomas Bächler Signed-off-by: Tom Gundersen --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5ac71da..1a3fa14 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,7 @@ DIRS := \ /usr/share/bash-completion/completions \ /usr/share/zsh/site-functions \ /usr/share/man/man5 \ + /usr/share/man/man7 \ /usr/share/man/man8 all: doc @@ -26,6 +27,7 @@ install: installdirs doc install -m755 -t $(DESTDIR)/etc/profile.d locale.sh install -m755 -t $(DESTDIR)/usr/sbin rc.d install -m644 -t $(DESTDIR)/usr/share/man/man5 rc.conf.5 + install -m644 -t $(DESTDIR)/usr/share/man/man7 ArchLinux.7 install -m644 -t $(DESTDIR)/usr/share/man/man8 rc.d.8 install -m644 tmpfiles.conf $(DESTDIR)/usr/lib/tmpfiles.d/initscripts.conf install -m644 -T bash-completion $(DESTDIR)/usr/share/bash-completion/completions/rc.d @@ -34,13 +36,16 @@ install: installdirs doc %.5: %.5.txt a2x -d manpage -f manpage $< +%.7: %.7.txt + a2x -d manpage -f manpage $< + %.8: %.8.txt a2x -d manpage -f manpage $< -doc: rc.conf.5 rc.d.8 +doc: rc.conf.5 ArchLinux.7 rc.d.8 clean: - rm -f rc.conf.5 rc.d.8 + rm -f rc.conf.5 ArchLinux.7 rc.d.8 tar: git archive HEAD --prefix=initscripts-$(VER)/ | xz > initscripts-$(VER).tar.xz -- cgit v1.2.3