summaryrefslogtreecommitdiff
path: root/lib/command.c
diff options
context:
space:
mode:
authorpaul <paul>2005-03-08 10:43:43 +0000
committerpaul <paul>2005-03-08 10:43:43 +0000
commit3b0c5d9a56560cfbfb1a8f5b9e6cc71025eb5490 (patch)
treea4b9c7506cb74223635135902e0479fda0b46fe2 /lib/command.c
parentc3d26c72982bc95906afb58fb46f1268bc915a3b (diff)
2005-03-08 Jeroen Massar <jeroen@unfix.org>
* vty.c: (vty_hello) display motd file, if set * command.h: add char *motdfile to struct host * command.c: (config_write_host) write out motdfile config (banner_motd_file_cmd) new command, allow motd to be read from file. (no_banner_motd_cmd) free motdfile string, if needs be. (cmd_init) init (struct host).motdfile. Add new motd file commands.
Diffstat (limited to 'lib/command.c')
-rw-r--r--lib/command.c22
1 files changed, 20 insertions, 2 deletions
diff --git a/lib/command.c b/lib/command.c
index 1e1f3cf5..ca1100da 100644
--- a/lib/command.c
+++ b/lib/command.c
@@ -1,5 +1,5 @@
/*
- $Id: command.c,v 1.37 2005/03/07 08:35:39 hasso Exp $
+ $Id: command.c,v 1.38 2005/03/08 10:43:43 paul Exp $
Command interpreter routine for virtual terminal [aka TeletYpe]
Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
@@ -597,7 +597,9 @@ config_write_host (struct vty *vty)
vty_out (vty, "service terminal-length %d%s", host.lines,
VTY_NEWLINE);
- if (! host.motd)
+ if (host.motdfile)
+ vty_out (vty, "banner motd file %s%s", host.motdfile, VTY_NEWLINE);
+ else if (! host.motd)
vty_out (vty, "no banner motd%s", VTY_NEWLINE);
return 1;
@@ -3399,6 +3401,18 @@ DEFUN (no_config_log_record_priority,
return CMD_SUCCESS;
}
+DEFUN (banner_motd_file,
+ banner_motd_file_cmd,
+ "banner motd file [FILE]",
+ "Set banner\n"
+ "Banner for motd\n"
+ "Banner from a file\n"
+ "Filename\n")
+{
+ if (host.motdfile) free(host.motdfile);
+ host.motdfile = strdup(argv[0]);
+ return CMD_SUCCESS;
+}
DEFUN (banner_motd_default,
banner_motd_default_cmd,
@@ -3419,6 +3433,8 @@ DEFUN (no_banner_motd,
"Strings for motd\n")
{
host.motd = NULL;
+ if (host.motdfile) free(host.motdfile);
+ host.motdfile = NULL;
return CMD_SUCCESS;
}
@@ -3460,6 +3476,7 @@ cmd_init (int terminal)
host.config = NULL;
host.lines = -1;
host.motd = default_motd;
+ host.motdfile = NULL;
/* Install top nodes. */
install_node (&view_node, NULL);
@@ -3539,6 +3556,7 @@ cmd_init (int terminal)
install_element (CONFIG_NODE, &service_password_encrypt_cmd);
install_element (CONFIG_NODE, &no_service_password_encrypt_cmd);
install_element (CONFIG_NODE, &banner_motd_default_cmd);
+ install_element (CONFIG_NODE, &banner_motd_file_cmd);
install_element (CONFIG_NODE, &no_banner_motd_cmd);
install_element (CONFIG_NODE, &service_terminal_length_cmd);
install_element (CONFIG_NODE, &no_service_terminal_length_cmd);