#!/bin/bash

. ${TOOLKIT}-functions.sh

# MS SQL driver
#
grep -q '^\[FreeTDS\]$' /etc/odbcinst.ini || {
	odbcinst -i -d -f /usr/share/tdsodbc/odbcinst.ini
}

# fix wrong perms on ini files (users get a segmentation fault otherwise)
# 
chmod a+r /etc/odbcinst.ini

###$SOMETHING_CHANGED && {
	###
###}

exit 0
