summaryrefslogtreecommitdiff
path: root/dh_installinit.1
diff options
context:
space:
mode:
authorjoey <joey>1999-10-01 20:24:16 +0000
committerjoey <joey>1999-10-01 20:24:16 +0000
commit21c8f1231d3605308af089d97ad1f367285e5bb1 (patch)
tree124d2789dcf0fd88a9ca0a651585ebd4f7a4fcb3 /dh_installinit.1
parent49f593eb4832f2d3c3101fba5a4d4c99e37d86a3 (diff)
r289: * Added note to man pages of commands that use autoscript to note they are
not idempotent.
Diffstat (limited to 'dh_installinit.1')
-rw-r--r--dh_installinit.180
1 files changed, 38 insertions, 42 deletions
diff --git a/dh_installinit.1 b/dh_installinit.1
index 4eb4ee07..6a0e4758 100644
--- a/dh_installinit.1
+++ b/dh_installinit.1
@@ -1,70 +1,66 @@
-.TH DH_INSTALLINIT 1
+.TH DH_INSTALLINIT 1 "" "Debhelper Commands" "Debhelper Commands"
.SH NAME
dh_installinit \- install init scripts into package build directories
.SH SYNOPSIS
.B dh_installinit
-.I "[-v] [-a] [-i] [-ppackage] [-Ptmpdir] [-n] [-r] [-d] [-u params]"
+.I "[debhelper options] [--init-script=scriptname] [-n] [-r] [-d] [-uparams]"
.SH "DESCRIPTION"
-dh_installmenu is a debhelper program that is responsible for installing
+dh_installinit is a debhelper program that is responsible for installing
init scripts into package build directories.
.P
It also automatically generates the postinst and postrm and prerm commands
needed to set up the symlinks in /etc/rc*.d/ and to start and stop the init
scripts.
.P
-If a file named debian/init exists, then it is installed into
-etc/init.d/package in the package build directory (with "package" replaced
-by the package name, unless the -d flag is specified, see below)
-.P
-For packages other than the first binary package listed in
-the control file, use debian/package.init instead (replace "package" with
-the name of the package.)
+If a file named debian/package.init (or debian/package.init.d for backwards
+compatibility with debstd) exists, then it is installed into
+etc/init.d/package in the package build directory, with "package" replaced
+by the packagename. (You may use debian/init for the first binary package
+listed in the control file.)
.SH OPTIONS
.TP
-.B \-v
-Verbose mode; show all commands that modify the package build directory.
-.TP
-.B \-a
-Install init scripts into all architecture dependent packages.
-.TP
-.B \-i
-Install init scripts into all architecture independent packages.
-.TP
-.B \-ppackage
-Install init scripts into the package named "package".
-.TP
-.B \-Ptmpdir
-Use "tmpdir" for package build directory.
+.B debhelper options
+See
+.BR debhelper (1)
+for a list of options common to all debhelper commands.
.TP
-.B \-n
+.B \-n, \--noscripts
Do not modify postinst/postrm/prerm scripts.
.TP
-.B \-r
+.B \-r, \--no-restart-on-upgrade
Do not restart daemon on upgrade.
.TP
-.B \-d
+.B \-d, \--remove-d
Remove trailing "d" from the name of the package, and use the result for the
filename the init script is installed as in etc/init.d/ . This may be useful
-for daemons with named ending in "d".
+for daemons with names ending in "d". (Note: this takes precedence over
+the --init-script parameter described below.)
.TP
-.B \-u params
+.B \-uparams, \--update-rcd-params=params
Pass "params" to
.BR update-rc.d (8)
-If not specified, "default" will be passed to
+If not specified, "defaults" will be passed to
.BR update-rc.d (8)
-.SH NOTES
-The
-.B \-a
-.B \-i
-and
-.B \-p
-arguments are cumulative. If none are specified, then all packages listed in
-the control file will be effected.
-.SH ENVIRONMENT
.TP
-.I DH_VERBOSE
-Enables verbose mode
+.B \--init-script=scriptname
+Use "scriptname" as for the filename the init script is installed as in
+etc/init.d/ . This is useful if you need to have an init script with a name
+different from the package's name. Note that if you use this parameter,
+dh_installinit will look to see if a file in the debian/ directory exists
+that looks like "scriptname" or "package.scriptname" and if so will install
+it as the inist script in preference to the files it normally installs. This
+feature is really only useful if you need a single package to install more
+than one init script.
+.SH ENVIRONMENT
+See
+.BR debhelper (1)
+for a list of environment variables that affect all debhelper commands.
+.SH NOTES
+Note that this command is not idempotent. "dh_clean -k" should be called
+between invocations of this command. Otherwise, it may cause multiple
+instances of the same text to be added to maintainer scripts.
.SH "SEE ALSO"
-.BR /usr/doc/debhelper/README
+.BR debhelper (1),
+.BR update_rc.d (8)
.SH AUTHOR
Joey Hess <joeyh@master.debian.org>