Mailinglist Archive: opensuse-bugs (5398 mails)
| < Previous | Next > |
[Bug 280096] New: sysstat init script fails due to not referencing proper 64 bit location
- From: bugzilla_noreply@xxxxxxxxxx
- Date: Fri, 1 Jun 2007 10:49:52 -0600 (MDT)
- Message-id: <bug-280096-21960@xxxxxxxxxxxxxxxxxxxxxxxxx/>
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@xxxxxxxxxxxxxxxxxxxxxx
ReportedBy: cgroneman@xxxxxxxxx
QAContact: qa@xxxxxxx
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.
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@xxxxxxxxxxxxxxxxxxxxxx
ReportedBy: cgroneman@xxxxxxxxx
QAContact: qa@xxxxxxx
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.
| < Previous | Next > |