diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-11-15 13:35:58 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-11-15 13:35:58 +0000 |
commit | 10fab33bd78df1805cfc7cec20674676d66c74d9 (patch) | |
tree | f137e42102ab0b1110a0174a8f838473553fab96 /pod/urpme.8.pod | |
parent | a4ec26e4d6e4d3770f76f74d9b2244c9eede2073 (diff) | |
download | urpmi-10fab33bd78df1805cfc7cec20674676d66c74d9.tar urpmi-10fab33bd78df1805cfc7cec20674676d66c74d9.tar.gz urpmi-10fab33bd78df1805cfc7cec20674676d66c74d9.tar.bz2 urpmi-10fab33bd78df1805cfc7cec20674676d66c74d9.tar.xz urpmi-10fab33bd78df1805cfc7cec20674676d66c74d9.zip |
Add pod versions of the manpages, bound to replace the nroff ones
Diffstat (limited to 'pod/urpme.8.pod')
-rw-r--r-- | pod/urpme.8.pod | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/pod/urpme.8.pod b/pod/urpme.8.pod new file mode 100644 index 00000000..4ce455a2 --- /dev/null +++ b/pod/urpme.8.pod @@ -0,0 +1,92 @@ +=head1 NAME + +urpme - rpm deinstaller + +=head1 SYNOPSIS + + urpme [options] [package_names] + +=head1 DESCRIPTION + +urpme allow packages to be deinstalled, +including all their dependencies. I<package_names> must have one of the forms +I<name>, I<name-version>, I<name-version-release>, or I<name-version-release.architecture>. +If you want to specify packages more broadly, use the B<-a> option. + +=head1 OPTIONS + +=over + +=item B<--help> + +Prints a help message and exit (this is the same as B<-h> or B<-?>). + +=item B<-a> + +If multiple packages match the given substring, deinstall them all. + +=item B<-v> + +Proposes a verbose mode with various messages. + +=item B<--auto> + +Removes packages non-interactively, without asking questions. + +=item B<--test> + +Test deinstallation of packages but do not modify the system. + +=item B<--force> + +Force invocation even if some packages do not exist. + +=item B<--parallel> I<alias> + +Activate distributed execution of urpmi to other machines (it is mandatory +that urpmi is installed, but it is not necessary to have media defined on +any machines). I<alias> defines which extension module is to be used by +urpmi (currently, B<urpmi-parallel-ka-run> or B<urpmi-parallel-ssh> are +available) and which machines should be updated. This alias is defined in +the file F</etc/urpmi/parallel.cfg> as described below. + +=item B<--root> I<directory> + +Use the file system tree rooted for rpm install. All operations and +scripts will run after chroot(2). The rpm database that lies in the +rooted tree will be used, but the urpmi configuration comes from the +normal system. + +=item B<--use-distrib> I<directory> + +Configure urpme on the fly from a distribution tree. + +=back + +=head1 FILES + +See urpmi.files(5). + +=head1 EXIT CODES + +=over + +=item 1 + +Command line inconsistency. + +=item 2 + +Removal of packages failed. + +=back + +=head1 AUTHORS + +Pascal Rigaux, Francois Pons, Rafael Garcia-Suarez +<rgarciasuarez@mandriva.com> (current maintainer) + +=head1 SEE ALSO + +urpmi.addmedia(8), urpmi.update(8), urpmi.removemedia(8), urpmf(8), +urpmi(8), urpmq(8), urpmi.files(5). |