Skip to content

Commit

Permalink
Remove extra "+" from command
Browse files Browse the repository at this point in the history
Change-Id: I6d9227743a4494f54a9d7e800086c9640e5eacd7
closes-bug: 1474803
  • Loading branch information
haripk committed Jul 24, 2015
1 parent 85e3533 commit 12299a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fabfile/tasks/provision.py
Expand Up @@ -1878,7 +1878,7 @@ def add_tor_agent_by_index(index, node_info, restart=True):
if not ssl_files_copied_from_standby:
ssl_cmd = "openssl req -new -x509 -days 3650 -text -sha256"
ssl_cmd += " -newkey rsa:4096 -nodes -subj \"/C=US/ST=Global/O="
ssl_cmd += + tor_vendor_name + "/CN=" + domain_name + "\""
ssl_cmd += tor_vendor_name + "/CN=" + domain_name + "\""
ssl_cmd += " -keyout " + privkey_file + " -out " + cert_file
sudo(ssl_cmd)

Expand Down

0 comments on commit 12299a6

Please sign in to comment.