Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Dec 2010 09:07:35 +0600
From:      Victor Sudakov <vas@mpeks.tomsk.su>
To:        freebsd-questions@freebsd.org
Subject:   Re: rc.d and environment variables
Message-ID:  <20101224030735.GA16472@admin.sibptus.tomsk.ru>
In-Reply-To: <20101223201249.ea7648aa.freebsd@edvax.de>
References:  <20101223172752.GA8539@admin.sibptus.tomsk.ru> <20101223201249.ea7648aa.freebsd@edvax.de>

next in thread | previous in thread | raw e-mail | index | archive | help
Polytropon wrote:
> > 
> > The svnserve daemon is started from /usr/local/etc/rc.d/svnserve. I need to
> > pass the environment variable KRB5_KTNAME=/home/svn/svn.keytab to the
> > daemon on start. How do I do that?
> 
> If the user corresponding to the svnservice has a login
> shell, which would usually be the system's default
> dialog shell, the C shell, you could edit /etc/csh.cshrc
> and put
> 
> 	setenv KRB5_KTNAME /home/svn/svn.keytab
> 
> to make it a system-wide setting (or use the user's
> ~/.cshrc for a user-only setting).

I have tried putting "setenv KRB5_KTNAME /home/svn/svn.keytab" in
~svn/.cshrc, it does not help. Evidently the svn user's login shell is
not called when "/usr/local/etc/rc.d/svnserve start" is called.

> In case the user does NOT have a default shell, I think
> you should be able to also define a system-wide environmental
> variable by coding
> 
> 	KRB5_KTNAME=/home/svn/svn.keytab; export KRB5_KTNAME
> 
> into /etc/rc.local (which will be executed at system startup).
> See "man rc.local" for details.

Excuse me? What does /etc/rc.local have to do with the rc.subr
framework? 

Of course I can abandon the standard /usr/local/etc/rc.d/svnserve
script and write my own one, or start svnserve from /etc/rc.local
(which I will do if I don't find a more graceful way), but it is not
what the question was about. 

-- 
Victor Sudakov,  VAS4-RIPE, VAS47-RIPN
sip:sudakov@sibptus.tomsk.ru



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20101224030735.GA16472>