#!/bin/bash

########################################################################
# Make sure we get standard POSIX-style collation for (eg) directory
# listings
#
# Chris Green <greenc@fnal.gov>
# UCR / BooNE
# 2002/12/25
#
########################################################################

if [ ! -r /etc/sysconfig/i18n ]; then
  exit 1
fi

if grep -e '^LC_COLLATE' /etc/sysconfig/i18n >/dev/null 2>&1; then
  exit 2
else
  echo 'LC_COLLATE="POSIX"' >> /etc/sysconfig/i18n
  exit 0
fi
