PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my settings
my profile
Public Pastes
Telerik Silverligh...
0 sec ago
JavaScript: Can so...
6 sec ago
Untitled
C# | 6 sec ago
Untitled
11 sec ago
Git - upstream + f...
12 sec ago
FL Studio 10
13 sec ago
Untitled
18 sec ago
Organising JBehave...
18 sec ago
New Paste
# Copyright 2007, Red Hat, Inc # Michael DeHaan <mdehaan@redhat.com> # Copyright 2009 # Milton Paiva Neto <milton.paiva@gmail.com> # # This software may be freely redistributed under the terms of the GNU # general public license. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. import func_module class RpmModule(func_module.FuncModule): version = "0.0.1" api_version = "0.0.1" description = "RPM related commands." def inventory(self, flatten=True): """ Returns information on all installed packages. By default, 'flatten' is passed in as True, which makes printouts very clean in diffs for use by func-inventory. If you are writting another software application, using flatten=False will prevent the need to parse the returns. """ # I have not been able to get flatten=False to work if there # is more than 491 entries in the dict -- ashcrow import rpm ts = rpm.TransactionSet() mi = ts.dbMatch() results = [] for hdr in mi: name = hdr['name'] epoch = (hdr['epoch'] or 0) version = hdr['version'] release = hdr['release'] arch = hdr['arch'] if flatten: results.append("%s %s %s %s %s" % (name, epoch, version, release, arch)) else: results.append([name, epoch, version, release, arch]) return results def verify(self, pattern='', flatten=True): """ Returns information on the verified package(s). """ import rpm import yum from re import split ts = rpm.TransactionSet() mi = (ts.dbMatch() if pattern == '' else self.glob(pattern)) results = [] for hdr in mi: name = hdr['name'] if pattern == '' else split("\s",hdr)[0] if flatten: yb = yum.YumBase() pkgs = yb.rpmdb.searchNevra(name) for pkg in pkgs: errors = pkg.verify() for fn in errors.keys(): for prob in errors[fn]: results.append('%s %s %s' % (name, fn, prob.message)) else: results.append("%s-%s-%s.%s" % (name, version, release, arch)) return results def glob(self, pattern, flatten=True): """ Return a list of installed packages that match a pattern """ import rpm ts = rpm.TransactionSet() mi = ts.dbMatch() results = [] if not mi: return mi.pattern('name', rpm.RPMMIRE_GLOB, pattern) for hdr in mi: name = hdr['name'] epoch = (hdr['epoch'] or 0) version = hdr['version'] release = hdr['release'] # gpg-pubkeys have no arch arch = (hdr['arch'] or "") if flatten: results.append("%s %s %s %s %s" % (name, epoch, version, release, arch)) else: results.append([name, epoch, version, release, arch]) return results def register_method_args(self): """ Implementing the method argument getter """ return { 'inventory':{ 'args':{ 'flatten':{ 'type':'boolean', 'optional':True, 'default':True, 'description':"Print clean in difss" } }, 'description':"Returns information on all installed packages" }, 'verify':{ 'args':{ 'flatten':{ 'type':'boolean', 'optional':True, 'default':True, 'description':"Print clean in difss" } }, 'description':"Returns information on the verified package(s)" }, 'glob':{ 'args':{ 'pattern':{ 'type':'string', 'optional':False, 'description':"The glob packet pattern" }, 'flatten':{ 'type':'boolean', 'optional':True, 'default':True, 'description':"Print clean in difss" } }, 'description':"Return a list of installed packages that match a pattern" } }
Optional Paste Settings
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
HTML 5
Java
JavaScript
Lua
None
Perl
PHP
Python
Rails
-------------
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
ActionScript
ActionScript 3
Ada
ALGOL 68
Apache Log
AppleScript
APT Sources
ASM (NASM)
ASP
autoconf
Autohotkey
AutoIt
Avisynth
Awk
BASCOM AVR
Bash
Basic4GL
BibTeX
Blitz Basic
BNF
BOO
BrainFuck
C
C for Macs
C Intermediate Language
C#
C++
C++ (with QT extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
ChaiScript
Clojure
Clone C
Clone C++
CMake
COBOL
CoffeeScript
ColdFusion
CSS
Cuesheet
D
DCS
Delphi
Delphi Prism (Oxygene)
Diff
DIV
DOS
DOT
E
ECMAScript
Eiffel
Email
EPC
Erlang
F#
Falcon
FO Language
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
Game Maker
GDB
Genero
Genie
GetText
Go
Groovy
GwBasic
Haskell
HicEst
HQ9 Plus
HTML
HTML 5
Icon
IDL
INI file
Inno Script
INTERCAL
IO
J
Java
Java 5
JavaScript
jQuery
KiXtart
Latex
Liberty BASIC
Linden Scripting
Lisp
LLVM
Loco Basic
Logtalk
LOL Code
Lotus Formulas
Lotus Script
LScript
Lua
M68000 Assembler
MagikSF
Make
MapBasic
MatLab
mIRC
MIX Assembler
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MPASM
MXML
MySQL
newLISP
None
NullSoft Installer
Oberon 2
Objeck Programming Langua
Objective C
OCalm Brief
OCaml
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
Pascal
PAWN
PCRE
Per
Perl
Perl 6
PHP
PHP Brief
Pic 16
Pike
Pixel Bender
PL/SQL
PostgreSQL
POV-Ray
Power Shell
PowerBuilder
ProFTPd
Progress
Prolog
Properties
ProvideX
PureBasic
PyCon
Python
q/kdb+
QBasic
R
Rails
REBOL
REG
Robots
RPM Spec
Ruby
Ruby Gnuplot
SAS
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
SQL
SystemVerilog
T-SQL
TCL
Tera Term
thinBasic
TypoScript
Unicon
UnrealScript
Vala
VB.NET
VeriLog
VHDL
VIM
Visual Pro Log
VisualBasic
VisualFoxPro
WhiteSpace
WHOIS
Winbatch
XBasic
XML
Xorg Config
XPP
YAML
Z80 Assembler
ZXBasic
Paste Expiration:
Never
10 Minutes
1 Hour
1 Day
1 Month
Paste Exposure:
Public
Unlisted
Private (members only)
Paste Name / Title:
Hello
Guest
Sign Up
or
Login
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login