wok-6.x rev 4964
auto render bootchart if pybootchartgui is installed
author | Rohit Joshi <jozee@slitaz.org> |
---|---|
date | Mon Feb 22 12:26:57 2010 +0000 (2010-02-22) |
parents | 1941b0214dd4 |
children | 9d22b4642908 |
files | pybootchartgui/receipt |
line diff
1.1 --- a/pybootchartgui/receipt Mon Feb 22 16:31:06 2010 +0100 1.2 +++ b/pybootchartgui/receipt Mon Feb 22 12:26:57 2010 +0000 1.3 @@ -30,6 +30,9 @@ 1.4 PY_VERSION=`cat /var/lib/tazpkg/installed/python/receipt | grep "VERSION="|cut -d \" -f 2 | cut -d . -f 1,2` 1.5 if [ -f $root/usr/bin/pybootchartgui ] ; then rm $root/usr/bin/pybootchartgui ; fi 1.6 ln -s $root/usr/lib/python$PY_VERSION/pybootchartgui.py $root/usr/bin/pybootchartgui 1.7 + if [ -f $root/etc/bootchartd.conf ] ; then 1.8 + sed -i s/'AUTO_RENDER="no"'/'AUTO_RENDER="yes"'/ $root/etc/bootchartd.conf 1.9 + fi 1.10 } 1.11 1.12 post_remove() 1.13 @@ -37,4 +40,7 @@ 1.14 local root 1.15 root=$1 1.16 rm $root/usr/bin/pybootchartgui 1.17 + if [ -f $root/etc/bootchartd.conf ] ; then 1.18 + sed -i s/'AUTO_RENDER="yes"'/'AUTO_RENDER="no"'/ $root/etc/bootchartd.conf 1.19 + fi 1.20 }