libcmds: stop creating empty .wgetrc and .netrc
Having empty files does not add any value. We do have a new HOME so files from the old HOME are not used anyways. And writing an empty .wgetrc will not disable the use of /etc/wgetrc. .netrc is supported by many tools in slightly different ways, but also here if there was a global config the one from HOME would likely be appended and would not prevent use of the global one. Signed-off-by: Henning Schild <henning.schild@siemens.com> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
parent
720aebc79b
commit
a8b69f5bd4
@ -167,17 +167,12 @@ class SetupHome(Command):
|
||||
return 'setup_home'
|
||||
|
||||
def execute(self, ctx):
|
||||
with open(self.tmpdirname + '/.wgetrc', 'w') as fds:
|
||||
fds.write('\n')
|
||||
with open(self.tmpdirname + '/.netrc', 'w') as fds:
|
||||
# Configure the gitlab CI authentification token
|
||||
if os.environ.get('CI_SERVER_HOST', False) \
|
||||
and os.environ.get('CI_JOB_TOKEN', False):
|
||||
if os.environ.get('CI_SERVER_HOST', False) \
|
||||
and os.environ.get('CI_JOB_TOKEN', False):
|
||||
with open(self.tmpdirname + '/.netrc', 'w') as fds:
|
||||
fds.write('machine ' + os.environ['CI_SERVER_HOST'] + '\n'
|
||||
'login gitlab-ci-token\n'
|
||||
'password ' + os.environ['CI_JOB_TOKEN'] + '\n')
|
||||
else:
|
||||
fds.write('\n')
|
||||
with open(self.tmpdirname + '/.gitconfig', 'w') as fds:
|
||||
fds.write('[User]\n'
|
||||
'\temail = kas@example.com\n'
|
||||
|
Loading…
Reference in New Issue
Block a user