Commit ae81f2b8 by John Jarvis

setting git_repo_secure_name

parent 93323888
...@@ -4,6 +4,7 @@ from argparse import ArgumentParser ...@@ -4,6 +4,7 @@ from argparse import ArgumentParser
import time import time
import json import json
import yaml import yaml
import os
try: try:
import boto.ec2 import boto.ec2
import boto.sqs import boto.sqs
...@@ -277,6 +278,7 @@ playbook_dir="$base_dir/configuration/playbooks/edx-east" ...@@ -277,6 +278,7 @@ playbook_dir="$base_dir/configuration/playbooks/edx-east"
git_repo_name="configuration" git_repo_name="configuration"
git_repo="https://github.com/edx/$git_repo_name" git_repo="https://github.com/edx/$git_repo_name"
git_repo_secure="{configuration_secure_repo}" git_repo_secure="{configuration_secure_repo}"
git_repo_secure_name="{configuration_secure_repo_basename}"
if $config_secure; then if $config_secure; then
git_cmd="env GIT_SSH=$git_ssh git" git_cmd="env GIT_SSH=$git_ssh git"
...@@ -353,6 +355,8 @@ rm -rf $base_dir ...@@ -353,6 +355,8 @@ rm -rf $base_dir
configuration_version=args.configuration_version, configuration_version=args.configuration_version,
configuration_secure_version=args.configuration_secure_version, configuration_secure_version=args.configuration_secure_version,
configuration_secure_repo=args.configuration_secure_repo, configuration_secure_repo=args.configuration_secure_repo,
configuration_secure_repo_basename=os.path.basename(
args.configuration_secure_repo),
environment=args.environment, environment=args.environment,
deployment=args.deployment, deployment=args.deployment,
play=args.play, play=args.play,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment