From owner-freebsd-questions@FreeBSD.ORG Sat Oct 15 20:40:39 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF89216A41F for ; Sat, 15 Oct 2005 20:40:39 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from nic.ach.sch.gr (nic.sch.gr [194.63.238.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C7EC43D67 for ; Sat, 15 Oct 2005 20:40:32 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: (qmail 10537 invoked by uid 207); 15 Oct 2005 20:40:30 -0000 Received: from keramida@ceid.upatras.gr by nic by uid 201 with qmail-scanner-1.21 (sophie: 3.04/2.30/3.97. Clear:RC:1(81.186.70.170):. Processed in 0.72635 secs); 15 Oct 2005 20:40:30 -0000 Received: from dialup170.ach.sch.gr (HELO flame.pc) ([81.186.70.170]) (envelope-sender ) by nic.sch.gr (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 15 Oct 2005 20:40:29 -0000 Received: from flame.pc (flame [127.0.0.1]) by flame.pc (8.13.4/8.13.4) with ESMTP id j9FKdALj060178; Sat, 15 Oct 2005 23:39:10 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by flame.pc (8.13.4/8.13.4/Submit) id j9FKdAP2060177; Sat, 15 Oct 2005 23:39:10 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sat, 15 Oct 2005 23:39:10 +0300 From: Giorgos Keramidas To: Lefteris Tsintjelis Message-ID: <20051015203910.GA60135@flame.pc> References: <435154BA.8030307@ene.asda.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <435154BA.8030307@ene.asda.gr> Cc: freebsd-stable@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Is rcorder working under /usr/local/etc/rc.d? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Oct 2005 20:40:40 -0000 On 2005-10-15 22:12, Lefteris Tsintjelis wrote: > I am getting all these "no provider" and rcorder doesn't seem to work > properly under /usr/local/etc/rc.d. Services seem to start > alphabetically and not in the right order specified. The keywords > REQUIRE, PROVIDE, BEFORE and KEYWORD seem to be ignored. Services like > SERVERS, NETWORKING, LOGIN, etc, are all provided within /etc/rc.d. > > rcorder /usr/local/etc/rc.d/* > > rcorder: requirement `SERVERS' in file `squid.sh' has no providers. > rcorder: requirement `NETWORKING' in file `squid.sh' has no providers. > rcorder: requirement `DAEMON' in file `snmptrapd.sh' has no providers. [...] These look like stuff that is "provided" by /etc/rc.d/* scripts. Try including all the scripts in the rcorder command line: % flame:/home/keramida$ rcorder /usr/local/etc/rc.d/* >/dev/null % rcorder: file `/usr/local/etc/rc.d/samba.sh' is before unknown provision `DAEMON' % rcorder: requirement `named' in file `/usr/local/etc/rc.d/samba.sh' has no providers. % rcorder: requirement `SERVERS' in file `/usr/local/etc/rc.d/samba.sh' has no providers. % rcorder: requirement `NETWORKING' in file `/usr/local/etc/rc.d/samba.sh' has no providers. % rcorder: requirement `ldconfig' in file `/usr/local/etc/rc.d/perforce.sh.sample' has no providers. % rcorder: requirement `ldconfig' in file `/usr/local/etc/rc.d/mysql.sh' has no providers. % rcorder: requirement `ldconfig' in file `/usr/local/etc/rc.d/000.pkgtools.sh' has no providers. % flame:/home/keramida$ rcorder /etc/rc.d/* /usr/local/etc/rc.d/* >/dev/null % rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/newsyslog'. % rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/syslogd'.