mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-19 07:37:01 +02:00
9 lines
211 B
Text
9 lines
211 B
Text
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
|