summaryrefslogtreecommitdiff
path: root/man/deb-triggers.5
blob: 5fabea1345f0f98cb2520f709dd1dac3035819ab (plain)
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
81
82
83
84
85
86
87
88
.\" dpkg manual page - deb-triggers(5)
.\"
.\" Copyright © 2008 Guillem Jover <guillem@debian.org>
.\" Copyright © 2011 Raphaël Hertzog <hertzog@debian.org>
.\"
.\" This is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
.\" the Free Software Foundation; either version 2 of the License, or
.\" (at your option) any later version.
.\"
.\" This is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
.\" GNU General Public License for more details.
.\"
.\" You should have received a copy of the GNU General Public License
.\" along with this program.  If not, see <http://www.gnu.org/licenses/>.
.
.TH deb\-triggers 5 "2011-08-14" "Debian Project" "dpkg utilities"
.SH NAME
deb\-triggers \- package triggers
.
.SH SYNOPSIS
triggers
.
.SH DESCRIPTION
A package declares its relationship to some trigger(s) by including
a \fItriggers\fP file in its control archive (i.e. \fIDEBIAN/triggers\fP
during package creation).
.PP
This file contains directives, one per line. Leading and trailing whitespace
and everything after the first \fB#\fP on any line will be trimmed, and
empty lines will be ignored.
.PP
The trigger control directives currently supported are:
.PP
.in +5
.B interest
.I trigger-name
.PP
.in +5
.B interest\-noawait
.I trigger-name
.PP
.in +5
Specifies that the package is interested in the named trigger. All
triggers in which a package is interested must be listed using this
directive in the triggers control file. The "noawait" variant does
not put the triggering packages in triggers\-awaited state. This should
be used when the functionality provided by the trigger is not crucial.
.PP
.in +5
.B activate
.I trigger-name
.PP
.in +5
.B activate\-noawait
.I trigger-name
.PP
.in +5
Arranges that changes to this package's state will activate the
specified trigger. The trigger will be activated at the start of
the following operations: unpack, configure, remove (including for
the benefit of a conflicting package), purge and deconfigure.
The "noawait" variant does not put the triggering packages in
triggers\-awaited state. This should be used when the functionality
provided by the trigger is not crucial.
.PP
.in +5
If this package disappears during the unpacking of another package
the trigger will be activated when the disappearance is noted
towards the end of the unpack. Trigger processing, and transition
from triggers\-awaited to installed, does not cause activations.
In the case of unpack, triggers mentioned in both the old and new
versions of the package will be activated.
.PP
Unknown directives are an error which will prevent installation of the
package.
.PP
The "\-noawait" variants are only supported by dpkg 1.16.1 or newer, and
will lead to errors if used with an older dpkg. It is thus recommended
to add a "Pre\-Depends: dpkg (>= 1.16.1)" to any package that wish to use
those directives.
.
.SH SEE ALSO
.BR dpkg\-trigger (1),
.BR dpkg (1),
.BR /usr/share/doc/dpkg\-dev/triggers.txt.gz .