1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
.TH DH_INSTALLINIT 1
.SH NAME
dh_installinit \- install init scripts into package build directories
.SH SYNOPSIS
.B dh_installinit
.I "[-v] [-a] [-i] [--no-act] [--init-script=scriptname] [-ppackage] [-Ptmpdir] [-n] [-r] [-d] [-uparams]"
.SH "DESCRIPTION"
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/package.init 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
Verbose mode; show all commands that modify the package build directory.
.TP
.B \-a, \--arch
Install init scripts into all architecture dependent packages.
.TP
.B \-i, \--indep
Install init scripts into all architecture independent packages.
.TP
.B \--no-act
Do not really do anything. If used with -v, the result is that this command
will output a list of what it would have done.
.TP
.B \-ppackage, \--package=package
Install init scripts into the package named "package".
.TP
.B \-Ptmpdir, \--tmpdir=tmpdir
Use "tmpdir" for package build directory.
.TP
.B \-n, \--noscripts
Do not modify postinst/postrm/prerm scripts.
.TP
.B \-r, \--no-restart-on-upgrade
Do not restart daemon on upgrade.
.TP
.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". (Note: this takes precidence over
the --init-script parameter described below.)
.TP
.B \-uparams, \--update-rcd-params=params
Pass "params" to
.BR update-rc.d (8)
If not specified, "default" will be passed to
.BR update-rc.d (8)
.TP
.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.
.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
.TP
.I DH_NO_ACT
Enables no-act mode (see above).
.SH "SEE ALSO"
.BR /usr/doc/debhelper/README
.SH AUTHOR
Joey Hess <joeyh@master.debian.org>
|