10 lines
211 B
Plaintext
10 lines
211 B
Plaintext
|
case "${ACTION}" in
|
||
|
post)
|
||
|
# Add brother driver to sane configuration
|
||
|
_SANE_CONF='/etc/sane.d/dll.conf'
|
||
|
if [ "$(grep brother5 ${_SANE_CONF})" = '' ]; then
|
||
|
echo brother5 >> ${_SANE_CONF}
|
||
|
fi;
|
||
|
;;
|
||
|
esac
|