]> sourceware.org Git - systemtap.git/commitdiff
Add NEWS entry for new stap options --server and --server-status.
authorDave Brolley <brolley@redhat.com>
Wed, 7 Jul 2010 20:55:04 +0000 (16:55 -0400)
committerDave Brolley <brolley@redhat.com>
Wed, 7 Jul 2010 21:01:18 +0000 (17:01 -0400)
NEWS
csclient.cxx

diff --git a/NEWS b/NEWS
index a21e633af5a852b21f59f3cc9e1518ab510af1bc..9cc51d0a43a04ecb7ec272eba4ef99e94570828a 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,15 @@
 * What's new
 
+- A new integrated compile server client is now available as part of stap.
+
+  o 'stap --server ...' is equivalent to 'stap-client ...'
+  o 'stap --server-status' is equivalent to 'stap-find-servers'
+  o 'stap --server-status=online' is equivalent to 'stap-find-servers --all'
+  o stap-client and its related tools will soon be deprecated.
+  o the nss-devel and avahi-devel packages are required for building stap with
+    the integrated client (checked during configuration).
+  o nss and avahi are required to run the integrated client.
+
 - A new operator @entry is available for automatically saving an expression
   at entry time for use in a .return probe.
    probe foo.return { println(get_cycles() - @entry(get_cycles())) }
index bf2b196f237d467adc7b00c70fe9a7700a796791..75e9482529d81739da7e298a8337da2a94662e2a 100644 (file)
@@ -787,7 +787,7 @@ query_server_status (const systemtap_session &s, const string &status_string)
   // otherwise if the --unprivileged has been used
   //   the default is online,trusted,compatible,signer
   // otherwise
-  //   the default is online,trusted,compatible
+  //   the default is online,compatible
   //
   // Having said that,
   //   'online' is only applicable if we have avahi
@@ -801,7 +801,7 @@ query_server_status (const systemtap_session &s, const string &status_string)
          working_string = "online,";
 #endif
 #if HAVE_NSS
-         working_string += "trusted,";
+         //      working_string += "trusted,"; --- not yet
          if (s.unprivileged)
            working_string += "signer,";
 #endif
This page took 0.036526 seconds and 5 git commands to generate.