On Fri, Apr 13, 2012 at 11:01:51AM -0700, Brian C. Lane wrote: > From: "Brian C. Lane" <bcl@xxxxxxxxxx> > > pre/post scripts can now use the following environmental variables: > PROXY > PROXY_USER > PROXY_PASSWORD > > When no proxy user or password is set the _USER and/or _PASSWORD > variables will be set to a blank string. > > Resolves: rhbz#800388 > --- > anaconda | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/anaconda b/anaconda > index b17d0e5..c2ebe76 100755 > --- a/anaconda > +++ b/anaconda > @@ -738,6 +738,11 @@ if __name__ == "__main__": > if len(ret) == 2: > anaconda.proxyPassword = ret[1].rstrip() > > + # Set environmental variables to be used by pre/post scripts > + os.environ["PROXY"] = anaconda.proxy > + os.environ["PROXY_USER"] = anaconda.proxyUsername or "" > + os.environ["PROXY_PASSWORD"] = anaconda.proxyPassword or "" > + > if opts.updateSrc: > anaconda.updateSrc = opts.updateSrc > > -- > 1.7.7.6 I think we're better off limiting what we set and letting the pre/post script pick them up and copy them to whatever their specific apps need. -- Brian C. Lane | Anaconda Team | IRC: bcl #anaconda | Port Orchard, WA (PST8PDT)
Attachment:
pgpFF8Km2UCZv.pgp
Description: PGP signature
_______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list