diff options
-rwxr-xr-x | tests/functest_run.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/functest_run.sh b/tests/functest_run.sh index 5f2e0f9..b866ab9 100755 --- a/tests/functest_run.sh +++ b/tests/functest_run.sh @@ -110,7 +110,9 @@ create_parser_user_and_project() { } || { openstack ${debug} role add ${PARSER_ROLE} --user ${PARSER_USER} \ --project ${PARSER_PROJECT} - echo " Grant user ${PARSER_USER} the role ${PARSER_ROLE} in project ${PARSER_PROJECT} successful." + openstack ${debug} role add heat_stack_owner --user ${PARSER_USER} \ + --project ${PARSER_PROJECT} + echo " Grant user ${PARSER_USER} the role ${PARSER_ROLE} and heat_stack_owner in project ${PARSER_PROJECT} successful." } } |