From 3bbdbaf825f28e2ee9a39b1773294203f899f8c7 Mon Sep 17 00:00:00 2001 From: Dirk Koopman Date: Mon, 29 Dec 2008 22:00:08 +0000 Subject: [PATCH] add missing show/motd command --- cmd/show/motd.pl | 9 +++++++++ perl/Version.pm | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 cmd/show/motd.pl diff --git a/cmd/show/motd.pl b/cmd/show/motd.pl new file mode 100644 index 00000000..fa774a9c --- /dev/null +++ b/cmd/show/motd.pl @@ -0,0 +1,9 @@ +# +# send the motd for this user +# + +my ($self, $line) = @_; + +$self->send_motd; + +return (1); diff --git a/perl/Version.pm b/perl/Version.pm index 80634766..7dd45ac2 100644 --- a/perl/Version.pm +++ b/perl/Version.pm @@ -11,6 +11,6 @@ use vars qw($version $subversion $build); $version = '1.55'; $subversion = '0'; -$build = '35'; +$build = '36'; 1; -- 2.34.1