Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com
Message-ID: <42AB2387.3000701@familiehaase.de>
Date: Sat, 11 Jun 2005 19:46:47 +0200
From: "Gerrit P. Haase" <gerrit@familiehaase.de>
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.8) Gecko/20050511
MIME-Version: 1.0
To: Oliver Geisen <technik@kreisbote.de>
CC: Cygwin Newsgroup <cygwin@cygwin.com>
Subject: Re: Run own postinstall script
References: <2057c8c5a6b6af91adddaf0f25f0624c@kreisbote.de>
In-Reply-To: <2057c8c5a6b6af91adddaf0f25f0624c@kreisbote.de>
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
X-IsSubscribed: yes

Oliver Geisen wrote:

> Hello,
> 
> is there a way i can run an self-created post-installation-script aber 
> setup is done, resp.
> after the first shell is invoked ?

Every script ending with .sh in /etc/postinstall is executed from
setup.exe and renamed to *.sh.done.

At shell startup there is /etc/profile.d/ which contains scripts
running when shell is started (if ending with .sh, see /etc/profile:

for i in /etc/profile.d/*.sh ; do
   if [ -f $i ]; then
     . $i
   fi
done


Gerrit
-- 
=^..^=

--
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/

