10 lines
127 B
Bash
Executable File
10 lines
127 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ "$1" = configure ] && [ -z "$2" ] && [ ! -e /etc/odbcinst.ini ]; then
|
|
touch /etc/odbcinst.ini
|
|
fi
|
|
|
|
|