1yum-verify(1) yum-verify(1)
2
3
4
6 yum verify plugin
7
9 yum [options] verify [package ...]
10
12 This plugin extends yum with some commands that give verification
13 information on the installed system, much like rpm -V. You can change
14 how the verification is done and which files it applies to. In case any
15 mismatches are found, the exit status is set to 1.
16
17 added yum commands are:
18 * verify
19 * verify-rpm
20 * verify-all
21
22 all of which take the same arguments as the list yum command. You can
23 only verify packages that are installed on the system.
24
25 verify Is the generic verification command, and is intended to give the
26 most useful output. It removes all false matches due to multilib
27 and ignores changes to configuration files by default.
28
29 verify-rpm
30 Does the same checks as rpm -V.
31
32 verify-all
33 Is used to list all the differences, including some that rpm
34 itself will ignore.
35
37 These are the options added to yum that are available in the verify
38 commands. They are:
39
40 --verify-filenames
41 This option is used to limit the filenames that the packages
42 will perform verification.
43
44 --verify-configuration-files
45 This option is only useful in the generic verify command, and
46 will enable/disable verification of files that are tagged as
47 configuration files.
48
50 To do the same as rpm -Va, use:
51
52 yum verify-rpm
53
54 To verify the packages starting with the name yum, use:
55
56 yum verify 'yum*'
57
58 To verify the binaries that are in a bin directory, use:
59
60 yum verify --verify-filenames='*bin/*'
61
62 To verify all include files, Eg. for multilib problems, use:
63
64 yum verify-all --verify-filenames='/usr/include/*'
65
66
68 yum [4m(8)
69 yum.conf [4m(5)
70 the verify.conf file in /etc/yum/plugins.d
71
72
74 James Antill <james.antill@redhat.com>.
75
76
78 Currently yum-verify does not do verify-script checking or dependency checking,
79 only file checking.
80
81 Should you find any other bugs, you should first
82 consult the FAQ section on http://yum.baseurl.org/wiki/Faq and if unsuccessful
83 in finding a resolution contact the mailing list: yum-devel@lists.baseurl.org.
84 To file a bug use http://bugzilla.redhat.com for Fedora/RHEL/Centos
85 related bugs and http://yum.baseurl.org/report for all other bugs.
86
87
88
89
90James Antill 01 March 2008 yum-verify(1)