https://bugzilla.novell.com/show_bug.cgi?id=280096 Summary: sysstat init script fails due to not referencing proper 64 bit location Product: openSUSE 10.3 Version: Alpha 4 Platform: x86-64 OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: Other AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: cgroneman@gmail.com QAContact: qa@suse.de The sysstat init script fails on x86-64 (presumably all 64 bit architectures). The start section is as follows: ----------- start) echo "Running sadc" /usr/lib/sa/sa1 1>/dev/null 2>&1 \ && ln -fs /etc/sysstat/sysstat.cron /etc/cron.d/sysstat \ || rc_failed 1 rc_status -v ;; ----------- It should be (note the /usr/lib64/ instead of /usr/lib/: ----------- start) echo "Running sadc" /usr/lib64/sa/sa1 1>/dev/null 2>&1 \ && ln -fs /etc/sysstat/sysstat.cron /etc/cron.d/sysstat \ || rc_failed 1 rc_status -v ;; ----------- -- 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.