diff options
Diffstat (limited to 'brscan3/brscan3.install')
-rwxr-xr-x | brscan3/brscan3.install | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/brscan3/brscan3.install b/brscan3/brscan3.install deleted file mode 100755 index 4b1f28b..0000000 --- a/brscan3/brscan3.install +++ /dev/null @@ -1,44 +0,0 @@ - -# new package version -devices_file="/usr/local/Brother/sane/brsanenetdevice3.cfg" - -pre_install() { - /bin/true -} - -# new package version -post_install() { - /usr/local/Brother/sane/setupSaneScan3 -i - -} - -# the new package version -# old package version -pre_upgrade() { - # If user has already configured their scanner then make a config backup - if [ -f $devices_file ]; then - cp $devices_file $devices_file.backup || return 1 - fi -} - -# new package version -# old package version -post_upgrade() { - # After upgrade revert user's scanner config and delete a config backup - if [ -f $devices_file.backup ]; then - cp $devices_file.backup $devices_file || return 1 - rm $devices_file.backup || return 1 - fi -} - -# old package version -pre_remove() { - /usr/local/Brother/sane/setupSaneScan3 -e - /bin/true -} - -# old package version -post_remove() { - /bin/true -} - |