blob: 12134311397178d02e0a4d85118cc4410fe44d8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
backend_name=sp_c260series
post_install() {
echo ${backend_name} >> /etc/sane.d/dll.conf
}
post_remove() {
sed -i /"${backend_name}"/d /etc/sane.d/dll.conf
}
post_upgrade() {
post_remove
post_install
}
|