From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,FREEMAIL_FROM,MAILING_LIST_MULTI autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 17378 invoked from network); 20 Oct 2020 22:51:17 -0000 Received: from alyss.skarnet.org (95.142.172.232) by inbox.vuxu.org with ESMTPUTF8; 20 Oct 2020 22:51:17 -0000 Received: (qmail 18256 invoked by uid 89); 20 Oct 2020 22:51:41 -0000 Mailing-List: contact supervision-help@list.skarnet.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Received: (qmail 18249 invoked from network); 20 Oct 2020 22:51:41 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :content-transfer-encoding; bh=8k2ZqiNPeL3uzR2UdcI32P0WLCPJRo50QpDWwut9UtI=; b=UJL7oT3/08UDHBhSiyDkN7jlyiKXwT40aZ7M/3EJ3jh7hrC2L3HWQpKro22+Fa/XyC cNfXYa+pUUjVc44z/4MBun+9SwlwS3sqOotShCQ7XyswcJXhakvI2PvnQ/UF+7Oc+LV0 5fRfbsQBYuXL5cZ5t92Izdt7UYYAeiAtnPjZSVDCyaEpeunoXvqa+rIVmi0eZr0c8KP7 P+fWkUvuiPLg8K7K1k7fTcrqEzFRey4eXnYIJZrFJM70n81Jdaw9w3ZNOYsE34c/1hEe 8RkuWv6M6CZNlqI5lmXYjWB003VqPR7442x8ZKXEKLuMuXBiH3l+fkruJC5cnoFmIXIg cUWQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:content-transfer-encoding; bh=8k2ZqiNPeL3uzR2UdcI32P0WLCPJRo50QpDWwut9UtI=; b=rgIMXs0uN3j7HlCDMvrYyItBqQnm+it1WRcPG++I1LhwB7DOmf2jBAsWxh3SYwCj8E WbO/7Hmw6NCwhCGiw305o4fDFh3Ss5XqN68Oq/Ao94wLz4xm+p8q3g2usOfoOuXUlVE2 27Mh60G689cREGLbeTLRtAjqJinlOfYt8wSrWNOUE8/jBlqvpiU5grljXDmaTSgwuuMs 8xNjpgyhKz+ngxbMW/utmXqo9bAMD9XfwUmg85ttyXoygAHoh347FDRWZbmDYU+quwgh 8Ejjt1L2QqICgPJ7yYsix/S3stIyAe7uF5JGEt0jQtEn8n737TEvQxFqtRwPgF5EkXe0 SZuw== X-Gm-Message-State: AOAM530vLU1HJB2hLqg6t0WEuc26BWy+epOUbZxRdCkO95hgNg4oG/6O 4zOFFEcey9E3qBdofNXGZUVnjg7tmXQ3YwFJXDd5mjT9jEY= X-Google-Smtp-Source: ABdhPJwyq3qFKh0AR6KO/lx/2gWpCKXN+ichgh4sbU5ho4TSmw+APJnO+2jqSEVqqbHinqELytrQmCLG/peTaV0EBJg= X-Received: by 2002:a02:a90c:: with SMTP id n12mr459000jam.102.1603234272853; Tue, 20 Oct 2020 15:51:12 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Guillermo Date: Tue, 20 Oct 2020 19:51:03 -0300 Message-ID: Subject: Re: S6 bundle To: Supervision Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Hi, Strictly speaking, you should say "s6-rc bundle", not "s6 bundle". El mar., 20 oct. 2020 a las 13:00, Amaresh Kotekal escribi=C3=B3: > > Contents of S6 bundle will run serially one after the other or they will > run parallely ? Specifying the name of a bundle in an 's6-rc -u change' command with make s6-rc start all services named in its 'contents' file. How they will start is governed by dependencies (i.e. the contents of those services' 'dependencies' file), as usual. If no service in the bundle depends on any of the others, they start in parallel. If some of them depend on others, you'll have subsets of services that start serially. > If any one service fails in bundle is other services will continue to run > or they will be not started ? Again, this is governed by dependencies. If no service in the bundle depends on any of the others, whether one service fails or not does not impact the rest of them. If some service in the bundle depends on others, and any of those fails, it will not be started, as usual. G.