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
|
#!/usr/bin/env python
#
# author: jtang@tchpc.tcd.ie
#
# this plugin is based on the hello world example
# from http://yum.baseurl.org/wiki/WritingYumPlugins
#
# to install, copy this file to /usr/lib/yum-plugins/etckeeper.py
# and then create /etc/yum/pluginconf.d/etckeeper.conf with the contents
# below.
#
# /etc/yum/pluginconf.d/etckeeper.conf:
# [main]
# enabled=1
#
import os
from glob import fnmatch
import yum
from yum.plugins import TYPE_CORE
requires_api_version = '2.1'
plugin_type = (TYPE_CORE,)
def pretrans_hook(conduit):
conduit.info(2, 'etckeeper: pre transaction commit')
servicecmd = conduit.confString('main', 'servicecmd', '/usr/sbin/etckeeper')
command = '%s %s' % (servicecmd, " pre-install")
os.system(command)
def posttrans_hook(conduit):
conduit.info(2, 'etckeeper: post transaction commit')
servicecmd = conduit.confString('main', 'servicecmd', '/usr/sbin/etckeeper')
command = '%s %s' % (servicecmd, "post-install")
os.system(command)
|