Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Date: Wed, 24 Aug 2005 14:27:58 -0400 (EDT) From: Jason Pyeron X-X-Sender: jpyeron AT ns DOT pyerotechnics DOT com To: cygwin AT cygwin DOT com Subject: Re: System environment variables In-Reply-To: <20050824174417.GG17452@calimero.vinschen.de> Message-ID: References: <20050824174417 DOT GG17452 AT calimero DOT vinschen DOT de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-IsSubscribed: yes On Wed, 24 Aug 2005, Corinna Vinschen wrote: > On Aug 24 13:08, Jason Pyeron wrote: >> >> >> How can I get the ssh service to inherit the environment variables as set >> in the system properties control panel applet? > > You can't. Use one of the methods to propagate environment variables thats what I thought. can I get some comments and critiques on my solution below: /etc/profile.d/winvars.sh #! /bin/sh cd /proc/registry/HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Control/Session\ Manager/Environment/ for i in * ; do bash -c "set -u ; echo \$$i" 2&> /dev/null || export $i="`cat $i`" done -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - - - Jason Pyeron PD Inc. http://www.pdinc.us - - Partner & Sr. Manager 7 West 24th Street #100 - - +1 (443) 921-0381 Baltimore, Maryland 21218 - - - -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- This message is for the designated recipient only and may contain privileged, proprietary, or otherwise private information. If you have received it in error, purge the message from your system and notify the sender immediately. Any other use of the email by you is prohibited. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/