~mimose/+junk/hplip-3.16.11

« back to all changes in this revision

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

  • Committer: guoyalong
  • Date: 2017-09-20 10:13:05 UTC
  • Revision ID: guoyalong@kylinos.cn-20170920101305-82zaolzpv1qghz29
Modified debian/control & debian/rules.

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