aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Silence output if package list is emptyGuido Günther2015-05-28
|
* Add mapping for libvirt-daemon -> libvirtdGuido Günther2014-12-29
| | | | Needed for the sysv init based systems
* Install apt.conf configuration on derivatives toov0.0.9Guido Günther2014-12-28
| | | | Closes: #761054
* Fix service name parsing for systemd >= 215Guido Günther2014-12-28
| | | | | | | | | | | Newer systemd put a colored bullet point '●' in front of the service name output: # sudo systemctl status 971 ● libvirtd.service - Virtualization daemon ... Skip that.
* Log services to restart in apt pipeline tooGuido Günther2014-12-28
| | | | | All other code paths log this at debug level. We should to so too to get improved output when using unattended-upgrades.
* Report PIDs of deleted executables at debug levelGuido Günther2014-12-28
| | | | It's not of any interest to the user.
* Abort early if we found a matchGuido Günther2014-07-14
| | | | | | Once we found a shared object that a process maps we don't need to continue with the other shared objects since one is enough to require a process restart.
* Another import bugfixGuido Günther2014-07-11
|
* Skip lsb_release tests when module is missingv0.0.8Guido Günther2014-07-11
|
* Make imports python2 and python3 compatibleGuido Günther2014-07-11
| | | | Do this again and I'll rewrite you in ruby.
* Add systemd supportGuido Günther2014-07-11
|
* Move find_services and find_pkgs out of main()Guido Günther2014-07-11
|
* Drop unused variableGuido Günther2014-07-11
|
* Document class variablesGuido Günther2014-07-01
|
* Move detect_distro to DistroGuido Günther2014-07-01
|
* Fix informal messageGuido Günther2014-06-28
| | | | Packages don't map shared objects
* Remove unused importsGuido Günther2014-06-28
|
* pkg_services: Check if a service is actually installedGuido Günther2014-06-28
| | | | | | | | So far we returned the full list from pkg_services. This is o.k. for many to one mappings like apache but not for one to many like openjdk. To avoid to print out services that aren't installed check that beforehand.
* Print userfriendly message if not rootGuido Günther2014-06-10
| | | | Closes: #751088
* Remove unused importsGuido Günther2014-06-10
|
* Don't break apt after package removalv0.0.7Guido Günther2014-06-06
|
* Add missing importGuido Günther2014-05-03
|
* Don't log info about deleted executables with error log levelGuido Günther2014-05-02
| | | | It's just informational.
* Update copyright statementsv0.0.6Guido Günther2014-04-28
| | | | | | Some were GPLv2+ due to a copy and paste error, some were missing. Thanks to Thorsten Alteholz for pointing this out
* Restart tomcat and jenkins on java updatesGuido Günther2014-04-25
|
* Also look for shared objects without a versionGuido Günther2014-04-25
| | | | | While this will add all -dev packages to the checks we need this in order to also pick up dlopen'd objects.
* Add tox.iniGuido Günther2014-04-22
| | | | To allow testing different python versions
* Use python3 friendly file modeGuido Günther2014-04-22
|
* Use print as functionGuido Günther2014-04-22
| | | | to make python3 happy
* Use loops instead of list comprehensionGuido Günther2014-04-22
| | | | since 2to3 would recommend this anyway
* Use 'in' instead of 'has_key'Guido Günther2014-04-22
| | | | which doesn't exit in Python3
* Use 'next(iter)' instead of 'iter.next()'Guido Günther2014-04-22
| | | | since the former works with python 2 and 3
* Don't run apt_pkg tests if apt_pkg is not installedGuido Günther2014-04-22
|
* Use 'open' instead of 'file'Guido Günther2014-04-22
| | | | since the later doesn't exist in python3
* Split out and test RedHatDistroGuido Günther2014-04-21
|
* fixup! Split out and test DebianDistroGuido Günther2014-04-21
|
* Split out and test RpmPkgGuido Günther2014-04-21
|
* Split out and test DebianPkgGuido Günther2014-04-21
|
* Split out and test DebianDistroGuido Günther2014-04-21
|
* Split out and test PkgGuido Günther2014-04-20
|
* Split out and test DistroGuido Günther2014-04-20
|
* Add setup.cfgGuido Günther2014-04-20
| | | | so we don't try to cover the mock module
* Add manpage in pod formatv0.0.5Guido Günther2014-04-18
|
* Split out and test ProcessGuido Günther2014-04-18
|
* Use entrypointGuido Günther2014-04-18
|
* Add .gitignoreGuido Günther2014-04-18
|
* Update README a bitGuido Günther2014-04-08
|
* Add READMEGuido Günther2014-03-27
|
* Switch from distutils to setuptoolsv0.0.4Guido Günther2014-03-17
|
* Distro: Fail on AttributeErrorGuido Günther2014-03-17
| | | | | since _pkg_services is by default an empty dict now and if it's not there something is wrong.