~ubuntu-branches/ubuntu/quantal/wvdial/quantal

« back to all changes in this revision

Viewing changes to src/wvdialtext.cc

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2004-10-06 11:05:06 UTC
  • mfrom: (0.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20041006110506-138x19fe4q0iu46e
Tags: 1.54.0-1ubuntu1
postinst: Disable command-line configuration to not disturb installation;
the script just exits early, so the postinst code is not completely lost
(Warty bug #2069)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Worldvisions Weaver Software:
3
 
 *   Copyright (C) 1997-2002 Net Integration Technologies, Inc.
4
 
 *
5
 
 * Stuff that wvdial prints...
6
 
 *
7
 
 * Created:     Sept 30 1997            D. Coombs
8
 
 */
9
 
#include "wvdialer.h"
10
 
#include "wvver.h"
11
 
 
12
 
const char wvdial_version_text[] = 
13
 
"WvDial " WVDIAL_VER_STRING
14
 
": Copyright (c) 1997-2002 Net Integration Technologies, Inc.\n";
15
 
 
16
 
const char wvdial_help_text[] = 
17
 
"Usage: wvdial { option || sect1 sect2 sect3 ... } \n"
18
 
"\n"
19
 
"  options:  --config configfile    use configfile instead of /etc/wvdial.conf\n"
20
 
"                                   or $HOME/.wvdial.conf\n"
21
 
"            --chat                 used when running wvdial from pppd\n"
22
 
"            --help                 display this help and exit\n"
23
 
"            --version              output version information and exit\n"
24
 
"            --no-syslog            don't send output to SYSLOG\n"
25
 
"\n"
26
 
"Optional \"sect\" arguments refer to sections in configuration file (usually)\n"
27
 
"/etc/wvdial.conf, $HOME/.wvdialrc or the file specified by --config.\n"
28
 
"Specified sections are all read, with later ones overriding previous ones.\n"
29
 
"Any options not in the listed sections are taken from [Dialer Defaults].\n"
30
 
"\n"
31
 
"Report bugs to wvdial@nit.ca\n";