Fix for system with proxy setting#22
Closed
dictcp wants to merge 1 commit intoopenstack:masterfrom
dictcp:master
Closed
Fix for system with proxy setting#22dictcp wants to merge 1 commit intoopenstack:masterfrom dictcp:master
dictcp wants to merge 1 commit intoopenstack:masterfrom
dictcp:master
Conversation
…n ./stack.sh is executed by root
|
Thank you for contributing to openstack-dev/devstack! openstack-dev/devstack uses Gerrit for code review. Please visit http://wiki.openstack.org/GerritWorkflow and follow the |
noelbk
pushed a commit
to noelbk/devstack
that referenced
this pull request
Jan 16, 2014
dtroyer
added a commit
to dtroyer/devstack
that referenced
this pull request
Dec 20, 2018
Enable postgresql on Clearlinux.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
in original code: stack.sh:~170
170 if [[ "$SHELL_AFTER_RUN" != "no" ]]; then
171 exec sudo -u $STACK_USER bash -l -c "set -e; bash stack.sh; bash"
172 else
173 exec sudo -u $STACK_USER bash -l -c "set -e; source stack.sh"
174 fi
It is unlikely that any env variable is passed to next step.
So I add a few piece of code and it works for me.