From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS22989 208.118.235.0/24 X-Spam-Status: No, score=-2.2 required=3.0 tests=AWL,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: dtas-all@80x24.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id BD5091F5DD for ; Mon, 13 Apr 2015 06:17:43 +0000 (UTC) Received: from localhost ([::1]:47211 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YhXgk-0006CW-VQ for dtas-all@80x24.org; Mon, 13 Apr 2015 02:17:42 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51727) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YhXgi-0006CR-KD for dtas-all@nongnu.org; Mon, 13 Apr 2015 02:17:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YhXge-0005Jx-KE for dtas-all@nongnu.org; Mon, 13 Apr 2015 02:17:40 -0400 Received: from dcvr.yhbt.net ([64.71.152.64]:42525) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YhXge-0005Jo-EH for dtas-all@nongnu.org; Mon, 13 Apr 2015 02:17:36 -0400 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 664771F5DD for ; Mon, 13 Apr 2015 06:17:35 +0000 (UTC) From: Eric Wong To: Subject: [PATCH] doc: update for dtas-sinkedit inotify support Date: Mon, 13 Apr 2015 06:17:35 +0000 Message-Id: <1428905855-5539-1-git-send-email-e@80x24.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 64.71.152.64 X-BeenThere: dtas-all@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dtas-all-bounces+dtas-all=80x24.org@nongnu.org Sender: dtas-all-bounces+dtas-all=80x24.org@nongnu.org New features need to be documented. --- Documentation/dtas-sinkedit.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Documentation/dtas-sinkedit.txt b/Documentation/dtas-sinkedit.txt index d6653fb..7a4f30f 100644 --- a/Documentation/dtas-sinkedit.txt +++ b/Documentation/dtas-sinkedit.txt @@ -14,6 +14,22 @@ dtas-sinkedit SINKNAME dtas-sinkedit spawns an editor to allow editing of a sink as a YAML file. See dtas-player_protocol(7) for details on SINKARGS. +On Linux machines with the sleepy_penguin RubyGem installed, inotify(7) +is used to monitor the file for changes while the text exitor is running. +Each time a user finishes saving a file, changes are committed immediately. +This behavior may be disabled by using the -N or --no-watch command-line +switch. + +# OPTIONS +-N, \--no-watch +: Disable inotify(7) support on Linux systems + +-n, \--dry-run +: Only print commands which would be sent to dtas-player + +-V, \--verbose +: Print out commands as they are sent to dtas-player + # EXAMPLES To get a list of existing sink names -- EW