Skip to content

Commit

Permalink
try to fix the ssl symlink loop
Browse files Browse the repository at this point in the history
  • Loading branch information
dsschult committed Aug 25, 2016
1 parent cc255d6 commit 5e44bdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iceprod/core/pilot.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def create_task(self, config):
# symlink important files
if 'ssl' in config['options']:
for f in config['options']['ssl']:
os.symlink(config['options']['ssl'][f],
os.symlink(os.path.join(main_dir,config['options']['ssl'][f]),
os.path.join(tmpdir,config['options']['ssl'][f]))

# start the task
Expand Down

0 comments on commit 5e44bdd

Please sign in to comment.