[Debian-live-changes] r1079 - in dists/trunk/live-helper: . manpages

Daniel Baumann daniel at alioth.debian.org
Wed Apr 18 05:53:43 UTC 2007


Author: daniel
Date: 2007-04-18 05:53:42 +0000 (Wed, 18 Apr 2007)
New Revision: 1079

Added:
   dists/trunk/live-helper/manpages/lh_binary.1.en
   dists/trunk/live-helper/manpages/lh_bootstrap.1.en
   dists/trunk/live-helper/manpages/lh_bootstrap_cdebootstrap.1.en
   dists/trunk/live-helper/manpages/lh_bootstrap_debootstrap.1.en
   dists/trunk/live-helper/manpages/lh_build.1.en
   dists/trunk/live-helper/manpages/lh_chroot.1.en
   dists/trunk/live-helper/manpages/lh_clean.1.en
   dists/trunk/live-helper/manpages/lh_source.1.en
   dists/trunk/live-helper/manpages/lh_testroot.1.en
   dists/trunk/live-helper/manpages/live-helper.7.en
Removed:
   dists/trunk/live-helper/manpages/lh_binary.1
   dists/trunk/live-helper/manpages/lh_bootstrap.1
   dists/trunk/live-helper/manpages/lh_bootstrap_cdebootstrap.1
   dists/trunk/live-helper/manpages/lh_bootstrap_debootstrap.1
   dists/trunk/live-helper/manpages/lh_build.1
   dists/trunk/live-helper/manpages/lh_chroot.1
   dists/trunk/live-helper/manpages/lh_clean.1
   dists/trunk/live-helper/manpages/lh_source.1
   dists/trunk/live-helper/manpages/lh_testroot.1
   dists/trunk/live-helper/manpages/live-helper.7
Modified:
   dists/trunk/live-helper/Makefile
Log:


Modified: dists/trunk/live-helper/Makefile
===================================================================
--- dists/trunk/live-helper/Makefile	2007-04-17 19:53:57 UTC (rev 1078)
+++ dists/trunk/live-helper/Makefile	2007-04-18 05:53:42 UTC (rev 1079)
@@ -16,11 +16,15 @@
 	cp -r COPYING doc/* $(DESTDIR)/usr/share/doc/live-helper
 
 	# Installing manpages
-	mkdir -p $(DESTDIR)/usr/share/man/man1
-	cp manpages/*.1 $(DESTDIR)/usr/share/man/man1
+	set -e; for MANPAGE in manpages/*.1.en; \
+	do \
+		install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man1/`basename $$MANPAGE .en`; \
+	done
 
-	mkdir -p $(DESTDIR)/usr/share/man/man7
-	cp manpages/*.7 $(DESTDIR)/usr/share/man/man7
+	set -e; for MANPAGE in manpages/*.7.en; \
+	do \
+		install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man7/`basename $$MANPAGE .en`; \
+	done
 
 uninstall:
 	# Uninstalling executables
@@ -36,14 +40,14 @@
 	rm -rf $(DESTDIR)/usr/share/doc/live-helper
 
 	# Uninstalling manpages
-	for MANPAGE in manpages/*.1; \
+	set -e; for MANPAGE in manpages/*.1.en; \
 	do \
-		rm -f $(DESTDIR)/usr/share/man/man1/`basename $$MANPAGE`; \
+		rm -f $(DESTDIR)/usr/share/man/man1/`basename $$MANPAGE .en`; \
 	done
 
-	for MANPAGE in manpages/*.7; \
+	set -e; for MANPAGE in manpages/*.7.en; \
 	do \
-		rm -f $(DESTDIR)/usr/share/man/man7/`basename $$MANPAGE`; \
+		rm -f $(DESTDIR)/usr/share/man/man7/`basename $$MANPAGE .en`; \
 	done
 
 clean:

Deleted: dists/trunk/live-helper/manpages/lh_binary.1
===================================================================
--- dists/trunk/live-helper/manpages/lh_binary.1	2007-04-17 19:53:57 UTC (rev 1078)
+++ dists/trunk/live-helper/manpages/lh_binary.1	2007-04-18 05:53:42 UTC (rev 1079)
@@ -1,59 +0,0 @@
-.TH LH_BINARY 1 "2007\-04\-23" "1.0~a7" "live\-helper"
-
-.SH NAME
-lh_binary \- meta-helper for lh_binary_*
-
-.SH SYNOPSIS
-.B lh_binary [\fIlive\-helper\ options\fR\|]
-
-.SH DESCRIPTION
-lh_binary is a meta-helper. It calls all necessary helpers to complete the binary stage.
-
-.SH BINARY HELPERS
-Here is the complete list of available binary helper commands. See their man pages for additional documentation.
-.IP "\fIlh_binary_chroot\fR(1)" 4
-copies chroot into chroot.
-.IP "\fIlh_binary_encryption\fR(1)" 4
-encrypts the root filesystem.
-.IP "\fIlh_binary_grub\fR(1)" 4
-copies grub into the binary image.
-.IP "\fIlh_binary_hdd\fR(1)" 4
-creates the harddisk binary tarball.
-.IP "\fIlh_binary_includes\fR(1)" 4
-copies files into the binary image.
-.IP "\fIlh_binary_iso\fR(1)" 4
-creates the CD/DVD binary image.
-.IP "\fIlh_binary_linuximage\fR(1)" 4
-copies linux-image into the binary image.
-.IP "\fIlh_binary_localincludes\fR(1)" 4
-copies local files into the binary image.
-.IP "\fIlh_binary_manifest\fR(1)" 4
-creates the package list of the root filesystem.
-.IP "\fIlh_binary_md5sum\fR(1)" 4
-creates md5sum.txt in the binary image.
-.IP "\fIlh_binary_memtest\fR(1)" 4
-copies a memtest into the binary image.
-.IP "\fIlh_binary_net\fR(1)" 4
-creates the netboot binary tarball.
-.IP "\fIlh_binary_rootfs\fR(1)" 4
-creates the root filesystem.
-.IP "\fIlh_binary_syslinux\fR(1)" 4
-copies syslinux into the binary image.
-.IP "\fIlh_binary_usb\fR(1)" 4
-creates the USB binary image.
-.IP "\fIlh_binary_yaboot\fR(1)" 4
-copies yaboot into the binary image.
-
-.SH SEE ALSO
-\fIlive\-helper\fR(7)
-.PP
-This program is a part of live-helper.
-
-.SH BUGS
-Report bugs against live\-helper <\fIhttp://packages.qa.debian.org/live\-helper/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHOR
-live\-helper was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.

Copied: dists/trunk/live-helper/manpages/lh_binary.1.en (from rev 1078, dists/trunk/live-helper/manpages/lh_binary.1)

Deleted: dists/trunk/live-helper/manpages/lh_bootstrap.1
===================================================================
--- dists/trunk/live-helper/manpages/lh_bootstrap.1	2007-04-17 19:53:57 UTC (rev 1078)
+++ dists/trunk/live-helper/manpages/lh_bootstrap.1	2007-04-18 05:53:42 UTC (rev 1079)
@@ -1,31 +0,0 @@
-.TH LH_BOOTSTRAP 1 "2007\-04\-23" "1.0~a7" "live\-helper"
-
-.SH NAME
-lh_bootstrap \- meta-helper for lh_bootstrap_*
-
-.SH SYNOPSIS
-.B lh_bootstrap [\fIlive\-helper\ options\fR\|]
-
-.SH DESCRIPTION
-lh_bootstrap is a meta-helper. It calls all necessary helpers to complete the bootstrap stage.
-
-.SH BOOTSTRAP HELPERS
-Here is the complete list of available bootstrap helper commands. See their man pages for additional documentation.
-.IP "\fIlh_bootstrap_cdebootstrap\fR(1)" 4
-bootstraps system with cdebootstrap.
-.IP "\fIlh_bootstrap_debootstrap\fR(1)" 4
-bootstraps system with debootstrap.
-
-.SH SEE ALSO
-\fIlive\-helper\fR(7)
-.PP
-This program is a part of live-helper.
-
-.SH BUGS
-Report bugs against live\-helper <\fIhttp://packages.qa.debian.org/live\-helper/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHOR
-live\-helper was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.

Copied: dists/trunk/live-helper/manpages/lh_bootstrap.1.en (from rev 1078, dists/trunk/live-helper/manpages/lh_bootstrap.1)

Deleted: dists/trunk/live-helper/manpages/lh_bootstrap_cdebootstrap.1
===================================================================
--- dists/trunk/live-helper/manpages/lh_bootstrap_cdebootstrap.1	2007-04-17 19:53:57 UTC (rev 1078)
+++ dists/trunk/live-helper/manpages/lh_bootstrap_cdebootstrap.1	2007-04-18 05:53:42 UTC (rev 1079)
@@ -1,47 +0,0 @@
-.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "2007\-04\-23" "1.0~a7" "live\-helper"
-
-.SH NAME
-lh_bootstrap_cdebootstrap \- bootstrap a Debian system with \fIcdebootstrap\fR(1)
-
-.SH SYNOPSIS
-.B lh_bootstrap_cdebootstrap [\fIlive\-helper\ options\fR\|]
-
-.SH DESCRIPTION
-lh_bootstrap_cdebootstrap uses \fIcdebootstrap\fR(1) to create a Debian base system from scratch.
-
-.SH CONFIGURATION FILE
-lh_bootstrap_cdebootstrap reads config/common and config/bootstrap if available. See ENVIRONMENT for the correct environment variables to use.
-
-.SH ENVIRONMENT
-lh_bootstrap_cdebootstrap respects the following environment variables if available, otherwise uses default values for it.
-.IP "\fI$LH_BOOTSTRAP\fR" 4
-control the bootstrap program to be used (Default: cdebootstrap)
-.IP "\fI$LH_CACHE\fR" 4
-control if downloaded packages should be cached (Default: enabled)
-.PP
-.IP "\fI$LIVE_ARCHITECTURE\fR" 4
-select the chroot architecture (Default: autodetected)
-.IP "\fI$LIVE_BOOTSTRAP_CONFIG\fR" 4
-set distribution config directory (Default: empty)
-.IP "\fI$LIVE_BOOTSTRAP_FLAVOUR\fR" 4
-select the flavour to use (Default: standard)
-.IP "\fI$LIVE_DISTRIBUTION\fR" 4
-select the distribution to use (Default: sid)
-.IP "\fI$LIVE_MIRROR_BUILD\fR" 4
-set the mirror to use (Default: http://ftp.debian.org/debian/)
-
-.SH SEE ALSO
-\fIcdebootstrap\fR(1)
-.PP
-\fIlive\-helper\fR(7)
-.PP
-This program is a part of live-helper.
-
-.SH BUGS
-Report bugs against live\-helper <\fIhttp://packages.qa.debian.org/live\-helper/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHOR
-live\-helper was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.

Copied: dists/trunk/live-helper/manpages/lh_bootstrap_cdebootstrap.1.en (from rev 1078, dists/trunk/live-helper/manpages/lh_bootstrap_cdebootstrap.1)

Deleted: dists/trunk/live-helper/manpages/lh_bootstrap_debootstrap.1
===================================================================
--- dists/trunk/live-helper/manpages/lh_bootstrap_debootstrap.1	2007-04-17 19:53:57 UTC (rev 1078)
+++ dists/trunk/live-helper/manpages/lh_bootstrap_debootstrap.1	2007-04-18 05:53:42 UTC (rev 1079)
@@ -1,47 +0,0 @@
-.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "2007\-04\-23" "1.0~a7" "live\-helper"
-
-.SH NAME
-lh_bootstrap_debootstrap \- bootstrap a Debian system with \fIdebootstrap\fR(8)
-
-.SH SYNOPSIS
-.B lh_bootstrap_debootstrap [\fIlive\-helper\ options\fR\|]
-
-.SH DESCRIPTION
-lh_bootstrap_debootstrap uses \fIdebootstrap\fR(8) to create a Debian base system from scratch.
-
-.SH CONFIGURATION FILE
-lh_bootstrap_debootstrap reads config/common and config/bootstrap if available. See ENVIRONMENT for the correct environment variables to use.
-
-.SH ENVIRONMENT
-lh_bootstrap_debootstrap respects the following environment variables if available, otherwise uses default values for it.
-.IP "\fI$LH_BOOTSTRAP\fR" 4
-control the bootstrap program to be used (Default: cdebootstrap)
-.IP "\fI$LH_CACHE\fR" 4
-control if downloaded packages should be cached (Default: enabled)
-.PP
-.IP "\fI$LIVE_ARCHITECTURE\fR" 4
-select the chroot architecture (Default: autodetected)
-.IP "\fI$LIVE_BOOTSTRAP_CONFIG\fR" 4
-set distribution config directory (Default: empty)
-.IP "\fI$LIVE_BOOTSTRAP_FLAVOUR\fR" 4
-select the flavour to use (Default: standard)
-.IP "\fI$LIVE_DISTRIBUTION\fR" 4
-select the distribution to use (Default: sid)
-.IP "\fI$LIVE_MIRROR_BUILD\fR" 4
-set the mirror to use (Default: http://ftp.debian.org/debian/)
-
-.SH SEE ALSO
-\fIdebootstrap\fR(8)
-.PP
-\fIlive\-helper\fR(7)
-.PP
-This program is a part of live-helper.
-
-.SH BUGS
-Report bugs against live\-helper <\fIhttp://packages.qa.debian.org/live\-helper/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHOR
-live\-helper was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.

Copied: dists/trunk/live-helper/manpages/lh_bootstrap_debootstrap.1.en (from rev 1078, dists/trunk/live-helper/manpages/lh_bootstrap_debootstrap.1)

Deleted: dists/trunk/live-helper/manpages/lh_build.1
===================================================================
--- dists/trunk/live-helper/manpages/lh_build.1	2007-04-17 19:53:57 UTC (rev 1078)
+++ dists/trunk/live-helper/manpages/lh_build.1	2007-04-18 05:53:42 UTC (rev 1079)
@@ -1,35 +0,0 @@
-.TH LH_BUILD 1 "2007\-04\-23" "1.0~a7" "live\-helper"
-
-.SH NAME
-lh_build \- building a live system
-
-.SH SYNOPSIS
-.B lh_build [\fIlive\-helper\ options\fR\|]
-
-.SH DESCRIPTION
-lh_build is a helper script to call all required meta-helper scripts to successfully build a live system.
-
-.SH META HELPERS
-Here is the complete list of available meta-helper commands. See their man pages for additional documentation.
-.IP "\fIlh_binary\fR(1)" 4
-builds a binary image.
-.IP "\fIlh_bootstrap\fR(1)" 4
-bootstraps a system.
-.IP "\fIlh_chroot\fR(1)" 4
-customizes a chroot.
-.IP "\fIlh_source\fR(1)" 4
-builds a source image.
-
-.SH SEE ALSO
-\fIlive\-helper\fR(7)
-.PP
-This program is a part of live-helper.
-
-.SH BUGS
-Report bugs against live\-helper <\fIhttp://packages.qa.debian.org/live\-helper/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHOR
-live\-helper was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.

Copied: dists/trunk/live-helper/manpages/lh_build.1.en (from rev 1078, dists/trunk/live-helper/manpages/lh_build.1)

Deleted: dists/trunk/live-helper/manpages/lh_chroot.1
===================================================================
--- dists/trunk/live-helper/manpages/lh_chroot.1	2007-04-17 19:53:57 UTC (rev 1078)
+++ dists/trunk/live-helper/manpages/lh_chroot.1	2007-04-18 05:53:42 UTC (rev 1079)
@@ -1,71 +0,0 @@
-.TH LH_CHROOT 1 "2007\-04\-23" "1.0~a7" "live\-helper"
-
-.SH NAME
-lh_chroot \- meta-helper for lh_chroot_*
-
-.SH SYNOPSIS
-.B lh_chroot [\fIlive\-helper\ options\fR\|]
-
-.SH DESCRIPTION
-lh_chroot is a meta-helper. It calls all necessary helpers to complete the chroot stage.
-
-.SH CHROOT HELPERS
-Here is the complete list of available chroot helper commands. See their man pages for additional documentation.
-.IP "\fIlh_chroot_apt\fR(1)" 4
-manages /etc/apt/apt.conf.
-.IP "\fIlh_chroot_debianchroot\fR(1)" 4
-manages /etc/debian_chroot.
-.IP "\fIlh_chroot_hacks\fR(1)" 4
-executes hacks in chroot.
-.IP "\fIlh_chroot_hooks\fR(1)" 4
-executes hooks in chroot.
-.IP "\fIlh_chroot_hosts\fR(1)" 4
-manages /etc/hosts.
-.IP "\fIlh_chroot_interactive\fR(1)" 4
-makes build interactive.
-.IP "\fIlh_chroot_linuximage\fR(1)" 4
-manage /etc/kernel-img.conf.
-.IP "\fIlh_chroot_localhooks\fR(1)" 4
-executes local hooks in chroot.
-.IP "\fIlh_chroot_localincludes\fR(1)" 4
-copies local files into chroot.
-.IP "\fIlh_chroot_localization\fR(1)" 4
-installs localization packages into chroot.
-.IP "\fIlh_chroot_localpackages\fR(1)" 4
-installs local packages into chroot.
-.IP "\fIlh_chroot_localpackageslists\fR(1)" 4
-installs local packages lists into chroot.
-.IP "\fIlh_chroot_packages\fR(1)" 4
-installs packages into chroot.
-.IP "\fIlh_chroot_packageslists\fR(1)" 4
-installs packages lists into chroot.
-.IP "\fIlh_chroot_proc\fR(1)" 4
-mounts /proc.
-.IP "\fIlh_chroot_resolv\fR(1)" 4
-manages /etc/resolv.conf.
-.IP "\fIlh_chroot_sources\fR(1)" 4
-manages /etc/apt/apt.conf.
-.IP "\fIlh_chroot_symlinks\fR(1)" 4
-convers symlinks.
-.IP "\fIlh_chroot_sysfs\fR(1)" 4
-mounts /sys.
-.IP "\fIlh_chroot_sysvinit\fR(1)" 4
-configures sysvinit.
-.IP "\fIlh_chroot_sysvrc\fR(1)" 4
-manages /usr/sbin/policy-rc.d.
-.IP "\fIlh_chroot_tasks\fR(1)" 4
-installs tasks into chroot.
-
-.SH SEE ALSO
-\fIlive\-helper\fR(7)
-.PP
-This program is a part of live-helper.
-
-.SH BUGS
-Report bugs against live\-helper <\fIhttp://packages.qa.debian.org/live\-helper/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHOR
-live\-helper was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.

Copied: dists/trunk/live-helper/manpages/lh_chroot.1.en (from rev 1078, dists/trunk/live-helper/manpages/lh_chroot.1)

Deleted: dists/trunk/live-helper/manpages/lh_clean.1
===================================================================
--- dists/trunk/live-helper/manpages/lh_clean.1	2007-04-17 19:53:57 UTC (rev 1078)
+++ dists/trunk/live-helper/manpages/lh_clean.1	2007-04-18 05:53:42 UTC (rev 1079)
@@ -1,44 +0,0 @@
-.TH LH_CLEAN 1 "2007\-04\-23" "1.0~a7" "live\-helper"
-
-.SH NAME
-lh_clean \- clean up system build directories
-
-.SH SYNOPSIS
-.B lh_clean [\fIlive\-helper\ options\fR\|]
-.B lh_clean [\fRall\fB|\fRcache\fB|\fRchroot\fB|\fRbinary\fB|\fRlock\fB|\fRpurge\fB|\fRstage\fB|\fRsource\fB]
-
-.SH DESCRIPTION
-lh_clean is a live\-helper program that is responsible for cleaning up after a system is built. It removes the system build directories, and removes some other files including stage files, and any detritus left behind by other live\-helper commands.
-
-.SH OPTIONS
-The following command line options are supported by lh_clean.
-.IP "\fBall\fR" 4
-removes chroot, binary, lock, stage, and source. This is the default operation.
-.IP "\fBcache\fR" 4
-removes all cache directories.
-.IP "\fBchroot\fR" 4
-unmounts and removes the chroot directory. If bootstrap cache is available, the system is reset to bootstrap stage.
-.IP "\fBbinary\fR" 4
-removes all binary related caches, directories, and stages files.
-.IP "\fBlock\fR" 4
-removes all lock files.
-.IP "\fBpurge\fR" 4
-removes everything (including cache) but config.
-.IP "\fBstage\fR" 4
-removes all stage files.
-.IP "\fBsource\fR" 4
-removes all source related caches, directories, and stage files.
-
-.SH SEE ALSO
-\fIlive\-helper\fR(7)
-.PP
-This program is a part of live-helper.
-
-.SH BUGS
-Report bugs against live\-helper <\fIhttp://packages.qa.debian.org/live\-helper/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHOR
-live\-helper was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.

Copied: dists/trunk/live-helper/manpages/lh_clean.1.en (from rev 1078, dists/trunk/live-helper/manpages/lh_clean.1)

Deleted: dists/trunk/live-helper/manpages/lh_source.1
===================================================================
--- dists/trunk/live-helper/manpages/lh_source.1	2007-04-17 19:53:57 UTC (rev 1078)
+++ dists/trunk/live-helper/manpages/lh_source.1	2007-04-18 05:53:42 UTC (rev 1079)
@@ -1,43 +0,0 @@
-.TH LH_SOURCE 1 "2007\-04\-23" "1.0~a7" "live\-helper"
-
-.SH NAME
-lh_source \- meta-helper for lh_source_*
-
-.SH SYNOPSIS
-.B lh_source [\fIlive\-helper\ options\fR\|]
-
-.SH DESCRIPTION
-lh_source is a meta-helper. It calls all necessary helpers to complete the source stage.
-
-.SH SOURCE HELPERS
-Here is the complete list of available source helper commands. See their man pages for additional documentation.
-.IP "\fIlh_source_config\fR(1)" 4
-copies debian-live config into source.
-.IP "\fIlh_source_download\fR(1)" 4
-downloads sources.
-.IP "\fIlh_source_generic\fR(1)" 4
-creates the generic source tarball.
-.IP "\fIlh_source_hdd\fR(1)" 4
-creates the harddisk source tarball.
-.IP "\fIlh_source_iso\fR(1)" 4
-creates the CD/DVD source image.
-.IP "\fIlh_source_md5sum\fR(1)" 4
-creates md5sum.txt in the source image.
-.IP "\fIlh_source_net\fR(1)" 4
-creates the netboot source tarball.
-.IP "\fIlh_source_usb\fR(1)" 4
-creates the USB source image.
-
-.SH SEE ALSO
-\fIlive\-helper\fR(7)
-.PP
-This program is a part of live-helper.
-
-.SH BUGS
-Report bugs against live\-helper <\fIhttp://packages.qa.debian.org/live\-helper/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHOR
-live\-helper was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.

Copied: dists/trunk/live-helper/manpages/lh_source.1.en (from rev 1078, dists/trunk/live-helper/manpages/lh_source.1)

Deleted: dists/trunk/live-helper/manpages/lh_testroot.1
===================================================================
--- dists/trunk/live-helper/manpages/lh_testroot.1	2007-04-17 19:53:57 UTC (rev 1078)
+++ dists/trunk/live-helper/manpages/lh_testroot.1	2007-04-18 05:53:42 UTC (rev 1079)
@@ -1,24 +0,0 @@
-.TH LH_TESTROOT 1 "2007\-04\-23" "1.0~a7" "live\-helper"
-
-.SH NAME
-lh_testroot \- ensure that a system is built as root
-
-.SH SYNOPSIS
-.B lh_testroot [\fIlive\-helper\ options\fR\|]
-
-.SH DESCRIPTION
-lh_testroot simply checks to see if you are root. If not, it exits with an error. Debian Live images must currently be built as real root, \fIfakeroot\fR(1) or \fIsudo\fR(8) does not work.
-
-.SH SEE ALSO
-\fIlive\-helper\fR(7)
-.PP
-This program is a part of live-helper.
-
-.SH BUGS
-Report bugs against live\-helper <\fIhttp://packages.qa.debian.org/live\-helper/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHOR
-live\-helper was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.

Copied: dists/trunk/live-helper/manpages/lh_testroot.1.en (from rev 1078, dists/trunk/live-helper/manpages/lh_testroot.1)

Deleted: dists/trunk/live-helper/manpages/live-helper.7
===================================================================
--- dists/trunk/live-helper/manpages/live-helper.7	2007-04-17 19:53:57 UTC (rev 1078)
+++ dists/trunk/live-helper/manpages/live-helper.7	2007-04-18 05:53:42 UTC (rev 1079)
@@ -1,171 +0,0 @@
-.TH LIVE\-HELPER 7 "2007\-04\-23" "1.0~a7" "live\-helper"
-
-.SH NAME
-live\-helper \- Debian Live helper programs
-
-.SH SYNOPSIS
-.B lh_* [\fIlive\-helper\ options\fR\|]
-
-.SH DESCRIPTION
-Live\-helper is a collection of programs that can be used to build Debian Live system images. The philosophy behind live\-helper is to provide a collection of small, simple, and easily understood tools that can be used in your own program to automate building of a Live system.
-.PP
-A typical program that uses live\-helper will call several live\-helper commands in sequence. Live\-helper commands are all named with a "lh_" prefix. Examples of such a program that uses live\-helper is \fImake\-live\fR(1).
-
-.\" .SH CONFIGURATION FILE
-.\" live-helper reads debian-live/config/live-helper if available. See ENVIRONMENT for the correct environment variables to use.
-
-.\" .SH ENVIRONMENT
-.\" Every live-helper command respects the following environment variables if available.
-.\" .IP "\fI$LH_DEBUG\fR" 4
-.\" enables debug (Default: false)
-.\" .IP "\fI$LH_QUIET\fR" 4
-.\" be quiet (Default: false)
-.\" .IP "\fI$LH_VERBOSE\fR" 4
-.\" be verbose (Default: false)
-
-.SH LIVE\-HELPER COMMANDS
-Here is the complete list of available live\-helper commands. See their man pages for additional documentation.
-.IP "\fIlh_binary\fR(1)" 4
-meta-helper for lh_binary_*.
-.IP "\fIlh_binary_chroot\fR(1)" 4
-copies chroot into chroot.
-.IP "\fIlh_binary_encryption\fR(1)" 4
-encrypts the root filesystem.
-.IP "\fIlh_binary_grub\fR(1)" 4
-copies grub into the binary image.
-.IP "\fIlh_binary_hdd\fR(1)" 4
-creates the harddisk binary tarball.
-.IP "\fIlh_binary_includes\fR(1)" 4
-copies files into the binary image.
-.IP "\fIlh_binary_iso\fR(1)" 4
-creates the CD/DVD binary image.
-.IP "\fIlh_binary_linuximage\fR(1)" 4
-copies linux-image into the binary image.
-.IP "\fIlh_binary_localincludes\fR(1)" 4
-copies local files into the binary image.
-.IP "\fIlh_binary_manifest\fR(1)" 4
-creates the package list of the root filesystem.
-.IP "\fIlh_binary_md5sum\fR(1)" 4
-creates md5sum.txt in the binary image.
-.IP "\fIlh_binary_memtest\fR(1)" 4
-copies a memtest into the binary image.
-.IP "\fIlh_binary_net\fR(1)" 4
-creates the netboot binary tarball.
-.IP "\fIlh_binary_rootfs\fR(1)" 4
-creates the root filesystem.
-.IP "\fIlh_binary_syslinux\fR(1)" 4
-copies syslinux into the binary image.
-.IP "\fIlh_binary_usb\fR(1)" 4
-creates the USB binary image.
-.IP "\fIlh_binary_yaboot\fR(1)" 4
-copies yaboot into the binary image.
-.IP "\fIlh_bootstrap\fR(1)" 4
-meta-helper for lh_bootstrap_*.
-.IP "\fIlh_bootstrap_cdebootstrap\fR(1)" 4
-bootstraps system with cdebootstrap.
-.IP "\fIlh_bootstrap_debootstrap\fR(1)" 4
-bootstraps system with debootstrap.
-.IP "\fIlh_build\fR(1)" 4
-meta-helper for lh_bootstrap, lh_chroot, lh_binary and lh_source.
-.IP "\fIlh_chroot\fR(1)" 4
-meta-helper for lh_chroot_*.
-.IP "\fIlh_chroot_apt\fR(1)" 4
-configures /etc/apt/apt.conf in chroot.
-.IP "\fIlh_chroot_debianchroot\fR(1)" 4
-configures /etc/debian_chroot in chroot.
-.IP "\fIlh_chroot_hacks\fR(1)" 4
-does evil (temporary) hacks in the chroot.
-.IP "\fIlh_chroot_hooks\fR(1)" 4
-executes additional commands in the chroot.
-.IP "\fIlh_chroot_hosts\fR(1)" 4
-configures /etc/hosts in the chroot.
-.IP "\fIlh_chroot_interactive\fR(1)" 4
-makes build interactive.
-.IP "\fIlh_chroot_linuximage\fR(1)" 4
-configures /etc/kernel-img.conf in the chroot.
-.IP "\fIlh_chroot_localhooks\fR(1)" 4
-executes additional local commands in the chroot.
-.IP "\fIlh_chroot_localincludes\fR(1)" 4
-copies local files into the binary image.
-.IP "\fIlh_chroot_localization\fR(1)" 4
-installs localization packages in the chroot.
-.IP "\fIlh_chroot_localpackages\fR(1)" 4
-installs local packages in the chroot.
-.IP "\fIlh_chroot_localpackageslists\fR(1)" 4
-installs local packages lists in the chroot.
-.IP "\fIlh_chroot_packages\fR(1)" 4
-installs packages in the chroot.
-.IP "\fIlh_chroot_packageslists\fR(1)" 4
-installs packages lists in the chroot.
-.IP "\fIlh_chroot_proc\fR(1)" 4
-mounts /proc in the chroot.
-.IP "\fIlh_chroot_resolv\fR(1)" 4
-configures /etc/resolf.conf in the chroot.
-.IP "\fIlh_chroot_sources\fR(1)" 4
-configures /etc/apt/sources.list in the chroot.
-.IP "\fIlh_chroot_symlinks\fR(1)" 4
-converts symlinks in the chroot.
-.IP "\fIlh_chroot_sysfs\fR(1)" 4
-mounts /sys in the chroot.
-.IP "\fIlh_chroot_sysvinit\fR(1)" 4
-minimizes daemon startup in the chroot.
-.IP "\fIlh_chroot_sysvrc\fR(1)" 4
-installs policy-id hack in the chroot.
-.IP "\fIlh_chroot_tasks\fR(1)" 4
-installs packages tasks in the chroot.
-.IP "\fIlh_clean\fR(1)" 4
-cleans up build directory.
-.IP "\fIlh_config\fR(1)" 4
-creates sample configuration.
-.IP "\fIlh_losetup\fR(1)" 4
-manages loop device handling
-.IP "\fIlh_source\fR(1)" 4
-meta-helper for lh_source_*.
-.IP "\fIlh_source_config\fR(1)" 4
-copies config into source directory.
-.IP "\fIlh_source_download\fR(1)" 4
-downloads source packages.
-.IP "\fIlh_source_generic\fR(1)" 4
-creates generic source tarball.
-.IP "\fIlh_source_hdd\fR(1)" 4
-creates harddisk source tarball.
-.IP "\fIlh_source_iso\fR(1)" 4
-creates CD/DVD source image.
-.IP "\fIlh_source_net\fR(1)" 4
-creates netboot source tarball.
-.IP "\fIlh_source_usb\fR(1)" 4
-creates USB source image.
-.IP "\fIlh_testroot\fR(1)" 4
-checks for root privileges.
-
-.SH LIVE\-HELPER OPTIONS
-The following command line options are supported by all live\-helper programs.
-.IP "\fB\-\-breakpoints\fR" 4
-run with breakpoints
-.IP "\fB\-\-conffile\fR" 4
-use custom configuration file
-.IP "\fB\-\-debug\fR" 4
-show debug information
-.IP "\fB\-\-force\fR" 4
-force helper execution, even if stage file exists.
-.IP "\fB\-h, \-\-help\fR" 4
-display help and exit
-.IP "\fB\-\-logfile\fR" 4
-use custom log file
-.IP "\fB\-\-quiet\fR" 4
-be quiet
-.IP "\fB\-u, \-\-usage\fR" 4
-show usage and exit
-.IP "\fB\-\-verbose\fR" 4
-be verbose
-.IP "\fB\-v, \-\-version\fR" 4
-output version information and exit
-
-.SH BUGS
-Report bugs against live\-helper <\fIhttp://packages.qa.debian.org/live\-helper/\fR>.
-
-.SH HOMEPAGE
-More information about the Debian Live project can be found at <\fIhttp://debian\-live.alioth.debian.org/\fR> and <\fIhttp://wiki.debian.org/DebianLive/\fR>.
-
-.SH AUTHOR
-live\-helper was written by Daniel Baumann <\fIdaniel at debian.org\fR> for the Debian project.

Copied: dists/trunk/live-helper/manpages/live-helper.7.en (from rev 1078, dists/trunk/live-helper/manpages/live-helper.7)




More information about the Debian-live-changes mailing list