summaryrefslogtreecommitdiff
path: root/vtysh/vtysh_main.c
diff options
context:
space:
mode:
authorhasso <hasso>2004-10-03 20:11:32 +0000
committerhasso <hasso>2004-10-03 20:11:32 +0000
commite7168df4eff0d377621c45deb32cfcfa72e0dd83 (patch)
tree86c4017761ffd8cfdbc16223915a9f537844c4f2 /vtysh/vtysh_main.c
parenteef1fe11b89c5ec3c035ff6e4a9acfbc5780b539 (diff)
Big vtysh cleanup. See changelogs for details.
Diffstat (limited to 'vtysh/vtysh_main.c')
-rw-r--r--vtysh/vtysh_main.c33
1 files changed, 13 insertions, 20 deletions
diff --git a/vtysh/vtysh_main.c b/vtysh/vtysh_main.c
index 223f0c6e..5f7856cf 100644
--- a/vtysh/vtysh_main.c
+++ b/vtysh/vtysh_main.c
@@ -40,16 +40,8 @@
char *progname;
/* Configuration file name and directory. */
-char *config_file = NULL;
char config_default[] = SYSCONFDIR VTYSH_DEFAULT_CONFIG;
-/* Integrated configuration file. */
-char *integrate_file = NULL;
-char *integrate_current = NULL;
-#if 0
-char integrate_default[] = SYSCONFDIR INTEGRATE_DEFAULT_CONFIG;
-#endif
-
/* Flag for indicate executing child command. */
int execute_flag = 0;
@@ -143,7 +135,6 @@ usage (int status)
"Integrated shell for Quagga routing software suite. \n\n"\
"-b, --boot Execute boot startup configuration\n" \
"-c, --command Execute argument as command\n "\
- "-f, --config_file Set configuration file name\n"\
"-h, --help Display this help and exit\n\n" \
"Report bugs to %s\n", progname, ZEBRA_BUG_ADDRESS);
@@ -158,7 +149,6 @@ struct option longopts[] =
{ "eval", required_argument, NULL, 'e'},
{ "command", required_argument, NULL, 'c'},
{ "help", no_argument, NULL, 'h'},
- { "config_file", required_argument, NULL, 'f'},
{ 0 }
};
@@ -208,7 +198,7 @@ main (int argc, char **argv, char **env)
/* Option handling. */
while (1)
{
- opt = getopt_long (argc, argv, "be:c:hf:", longopts, 0);
+ opt = getopt_long (argc, argv, "be:c:h", longopts, 0);
if (opt == EOF)
break;
@@ -228,12 +218,6 @@ main (int argc, char **argv, char **env)
case 'h':
usage (0);
break;
- /* XXX It isn't used in any way. */
- case 'i':
- integrated_file = strdup (optarg);
- case 'f':
- config_file = optarg;
- break;
default:
usage (1);
break;
@@ -259,7 +243,7 @@ main (int argc, char **argv, char **env)
vtysh_connect_all ();
/* Read vtysh configuration file. */
- vtysh_read_config (config_file, config_default);
+ vtysh_read_config (config_default);
/* If eval mode. */
if (eval_flag)
@@ -271,8 +255,14 @@ main (int argc, char **argv, char **env)
/* Boot startup configuration file. */
if (boot_flag)
{
- vtysh_read_config (integrate_file, integrate_default);
- exit (0);
+ if (vtysh_read_config (integrate_default))
+ {
+ fprintf (stderr, "Can't open configuration file [%s]\n",
+ integrate_default);
+ exit (1);
+ }
+ else
+ exit (0);
}
vtysh_pager_init ();
@@ -283,6 +273,9 @@ main (int argc, char **argv, char **env)
vtysh_auth ();
+ /* Enter into enable node. */
+ vtysh_execute ("enable");
+
/* Preparation for longjmp() in sigtstp(). */
sigsetjmp (jmpbuf, 1);
jmpflag = 1;