summaryrefslogtreecommitdiff
path: root/lib/vty.c
diff options
context:
space:
mode:
authorMark Stapp <mjs@voltanet.io>2019-08-28 10:51:36 -0400
committerGitHub <noreply@github.com>2019-08-28 10:51:36 -0400
commit8f910d6c3f9e92422764a625ec3a9c23a87df6bf (patch)
tree48b452e46348107b7c2a73121be2c72a771b5383 /lib/vty.c
parent183a580a4011c2a5a24738bc758f79550ca7dac8 (diff)
parentfd00c97cfae9dfec984bc1a0a0cdb0f76ff28cf8 (diff)
Merge pull request #4890 from donaldsharp/solaris_warn
*: Start process of possibly deprecating Solaris
Diffstat (limited to 'lib/vty.c')
-rw-r--r--lib/vty.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/vty.c b/lib/vty.c
index c1535802cf..deb9391bd5 100644
--- a/lib/vty.c
+++ b/lib/vty.c
@@ -348,6 +348,15 @@ void vty_hello(struct vty *vty)
vty_out(vty, "MOTD file not found\n");
} else if (host.motd)
vty_out(vty, "%s", host.motd);
+
+#if CONFDATE > 20200901
+ CPP_NOTICE("Please remove solaris code from system as it is deprecated");
+#endif
+#ifdef SUNOS_5
+ zlog_warn("If you are using FRR on Solaris, the FRR developers would love to hear from you\n");
+ zlog_warn("Please send email to dev@lists.frrouting.org about this message\n");
+ zlog_warn("We are considering deprecating Solaris and want to find users of Solaris systems\n");
+#endif
}
/* Put out prompt and wait input from user. */