Yaniv Bronhaim has uploaded a new change for review. Change subject: Over rhel (sysv) set LC_ALL=C when starting vdsm ......................................................................
Over rhel (sysv) set LC_ALL=C when starting vdsm This forces vdsm to use the default language for output, and forces sorting to be bytewise. Change-Id: Ief4fb89b68c2931409dc3a1c0a4767459fe9e6f0 Signed-off-by: Yaniv Bronhaim <[email protected]> --- M init/sysvinit/vdsmd.init.in 1 file changed, 5 insertions(+), 5 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/12/21212/1 diff --git a/init/sysvinit/vdsmd.init.in b/init/sysvinit/vdsmd.init.in index ea1ea85..494b63a 100755 --- a/init/sysvinit/vdsmd.init.in +++ b/init/sysvinit/vdsmd.init.in @@ -122,11 +122,11 @@ "${VDSMD_INIT_COMMON}" --pre-start || return 1 echo $"Starting up vdsm daemon: " - DAEMON_COREFILE_LIMIT=unlimited NICELEVEL="${NICE_LOWEST}" daemon \ - --user=vdsm "@VDSMDIR@/daemonAdapter" -0 /dev/null -1 /dev/null \ - -2 /dev/null --syslog "@VDSMDIR@/respawn" --minlifetime 10 \ - --daemon --masterpid "${RESPAWNPIDFILE}" "${VDSM_BIN}" \ - --pidfile "${PIDFILE}" || return 1 + DAEMON_COREFILE_LIMIT=unlimited LC_ALL=C NICELEVEL="${NICE_LOWEST}" \ + daemon --user=vdsm "@VDSMDIR@/daemonAdapter" -0 /dev/null \ + -1 /dev/null -2 /dev/null --syslog "@VDSMDIR@/respawn" \ + --minlifetime 10 --daemon --masterpid "${RESPAWNPIDFILE}" \ + "${VDSM_BIN}" --pidfile "${PIDFILE}" || return 1 touch "${LOCK_FILE}" return 0 } -- To view, visit http://gerrit.ovirt.org/21212 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ief4fb89b68c2931409dc3a1c0a4767459fe9e6f0 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Yaniv Bronhaim <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
