~ubuntu-branches/ubuntu/quantal/lsb/quantal-proposed

« back to all changes in this revision

Viewing changes to init-functions

  • Committer: Bazaar Package Importer
  • Author(s): Jeff Bailey
  • Date: 2006-05-18 01:00:59 UTC
  • Revision ID: james.westby@ubuntu.com-20060518010059-2d7qwr9hke8secjr
Tags: 3.1-5ubuntu1
Resynchronise with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
log_use_fancy_output () {
128
128
    TPUT=/usr/bin/tput
129
129
    EXPR=/usr/bin/expr
130
 
    if [ -x $TPUT ] && [ -x $EXPR ] && $TPUT hpa 60 >/dev/null 2>&1; then
 
130
    if [ "x$TERM" != "xdumb" ] && [ -x $TPUT ] && [ -x $EXPR ] && $TPUT hpa 60 >/dev/null 2>&1; then
131
131
        FANCYTTY=1
132
132
        true
133
133
    else