![](https://seccdn.libravatar.org/avatar/3035b38ff33cf86f480bb169b8500b80.jpg?s=120&d=mm&r=g)
24 Sep
2006
24 Sep
'06
23:49
https://bugzilla.novell.com/show_bug.cgi?id=207912 ------- Comment #1 from andreas.hanke@gmx-topmail.de 2006-09-24 17:49 MST ------- Forgot to mention that [ "$1" -eq "1" ] cannot be used within the %run_suseconfig_fonts definition because it would break %postun. But the following should always work for both %post and %postun: if [ ! "$1" -eq "2" ] ; then # ...code... fi Alternative approach, works for both %post and %postun as well: if [ "$1" -eq "1" -o "$1" -eq "0" ] ; then # ...code... fi -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.