~ubuntu-branches/ubuntu/raring/hplip/raring

« back to all changes in this revision

Viewing changes to debian/printer-driver-hpcups.bug-script

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-10-06 15:03:44 UTC
  • mfrom: (1.6.1) (20.1.16 quantal)
  • Revision ID: package-import@ubuntu.com-20121006150344-2p3xz26br0t3hu2q
Tags: 3.12.10-1
* New upstream release
  - Fixes "Network scanning fails (Closes: #683033)
* quilt refresh hplip-syslog-fix-debug-messages-to-error.dpatch
* Fix "error in clean build env" updated debian/rules (Closes: #687129)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
echo
 
3
while true; do
 
4
    read -p "Do you wish to include your system configuration with this report (hp-check -r)? " yn
 
5
    case $yn in
 
6
        [Yy]* ) /usr/bin/hp-check -t -r >&3 2>&3; break;;
 
7
        [Nn]* ) exit;;
 
8
        * ) echo "Please answer yes or no.";;
 
9
    esac
 
10
done