Add project status to readme master
authorKienan Stewart <kstewart@efficios.com>
Fri, 3 Nov 2023 13:24:20 +0000 (09:24 -0400)
committerKienan Stewart <kstewart@efficios.com>
Fri, 3 Nov 2023 13:24:20 +0000 (09:24 -0400)
Signed-off-by: Kienan Stewart <kstewart@efficios.com>
README
utils/lttngtop-live-simple.sh

diff --git a/README b/README
index d65121da93b9b292d07b31a0d9cc30b266601a51..813c994bb0d96a0685cb9a930519097fe0a042b2 100644 (file)
--- a/README
+++ b/README
@@ -1,3 +1,13 @@
+Project Status
+--------------
+
+LTTngTop is not currently maintained. Those interested in supporting continued
+efforts on this or other LTTng projects may contact
+EfficiOS <mailto:sales@efficios.com>`_.
+
+
+ABOUT
+-----
 LTTngTop
 Julien Desfossez <jdesfossez@efficios.com>
 June 2015
index 6d1f6edc6f44df01be01c42967c0ab8b9597e68a..d4de83f72b9ca920ad82e0da428ea914b1b955c3 100755 (executable)
@@ -64,6 +64,6 @@ lttngtop -r $(echo $s|cut -d' ' -f1)
 lttng destroy $SESSION_NAME >/dev/null
 echo -n "Destroy $HOME/lttng-traces/$HOSTNAME/${SESSION_NAME}* (Y/n) ? "
 read a
-if test $a = 'y' -o $a = 'Y'; then
+if test -z "$a" -o "$a" = 'y' -o "$a" = 'Y'; then
        rm -rf $HOME/lttng-traces/$HOSTNAME/${SESSION_NAME}*
 fi
This page took 0.023133 seconds and 4 git commands to generate.