http://bugzilla.opensuse.org/show_bug.cgi?id=1074245 Bug ID: 1074245 Summary: error in the posttrans scriptlet of package ghostscript-fonts-std Classification: openSUSE Product: openSUSE Tumbleweed Version: Current Hardware: PC OS: openSUSE Factory Status: NEW Severity: Normal Priority: P5 - None Component: Other Assignee: bnc-team-screening@forge.provo.novell.com Reporter: comes@naic.edu QA Contact: qa-bugs@suse.de Found By: --- Blocker: --- There is an error message about a command not found when the posttrans scriptlet of package ghostscript-fonts-std is executed. Ther scriptlet look like this: posttrans scriptlet (using /bin/sh): if [ -e /run/fontpackages/reconfigure-fonts ]; then if test -x /usr/sbin/fonts-config ; then LC_ALL=POSIX /usr/sbin/fonts-config --quiet fi rm /run/fontpackages/reconfigure-fonts fi if [ -e /run/fontpackages/reconfigure-fonts-cjk ]; then if test -x /usr/sbin/acroread-cidfont-config ; then /usr/sbin/acroread-cidfont-config fi if test -x /usr/sbin/ghostscript-cjk-config ; then /usr/sbin/ghostscript-cjk-config fi rm /run/fontpackages/reconfigure-fonts-cjk fi -n ghostscript-fonts-std exit 0 And the line causing the error is the one before exit 0 at the end that should be removed. Also a proper indentation would not hurt: posttrans scriptlet (using /bin/sh): if [ -e /run/fontpackages/reconfigure-fonts ]; then if test -x /usr/sbin/fonts-config ; then LC_ALL=POSIX /usr/sbin/fonts-config --quiet fi rm /run/fontpackages/reconfigure-fonts fi if [ -e /run/fontpackages/reconfigure-fonts-cjk ]; then if test -x /usr/sbin/acroread-cidfont-config ; then /usr/sbin/acroread-cidfont-config fi if test -x /usr/sbin/ghostscript-cjk-config ; then /usr/sbin/ghostscript-cjk-config fi rm /run/fontpackages/reconfigure-fonts-cjk fi exit 0 -- You are receiving this mail because: You are on the CC list for the bug.