#%% begin initialize 
echo "glibc ѥåν"
# ¸ ld.so.conf ̵п ld.so.conf.new  ld.so.conf Ȥ뤬
# ФΤޤޤˤƤ
if [ ! -f /etc/ld.so.conf ]; then
  mv /etc/ld.so.conf.new /etc/ld.so.conf
else
  rm /etc/ld.so.conf.new
fi
ldconfig

# ¸ nsswitch.conf ̵п nsswitch.conf.new  nsswitch.conf Ȥ뤬
# ФΤޤޤˤƤ
if [ ! -f /etc/nsswitch.conf ]; then
  mv /etc/nsswitch.conf.new /etc/nsswitch.conf
else
  rm /etc/nsswitch.conf.new
fi
echo "glibc ॾ"
# ¸localtimeФΤޤޡ̵JSTǺ
if [ ! -e /etc/localtime ]; then
   TIMEZONE="Japan"
   ( cd /usr/share/zoneinfo ; ln -sf posix/$TIMEZONE localtime )
   ( cd /etc ; cp ../usr/share/zoneinfo/localtime localtime )
fi

echo "glibc ѥåνλ"

#%% end
