From 3b8fd62ff932e3a2713ffb96ff4769bced40f7b2 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 28 Jan 2014 20:29:24 -0500 Subject: [PATCH] More site rename things. --- bin/ansible-galaxy | 6 +++--- docsite/_themes/srtd/footer.html | 2 +- hacking/README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/ansible-galaxy b/bin/ansible-galaxy index b576156d003..d14a5015724 100755 --- a/bin/ansible-galaxy +++ b/bin/ansible-galaxy @@ -198,7 +198,7 @@ def build_option_parser(action): if action in ("info","init","install"): parser.add_option( - '-s', '--server', dest='api_server', default="galaxy.ansibleworks.com", + '-s', '--server', dest='api_server', default="galaxy.ansible.com", help='The API server destination') if action in ("init","install"): @@ -510,7 +510,7 @@ def execute_init(args, options, parser): """ init_path = get_opt(options, 'init_path', './') - api_server = get_opt(options, "api_server", "galaxy.ansibleworks.com") + api_server = get_opt(options, "api_server", "galaxy.ansible.com") force = get_opt(options, 'force', False) api_config = api_get_config(api_server) @@ -615,7 +615,7 @@ def execute_install(args, options, parser): """ role_file = get_opt(options, "role_file", None) - api_server = get_opt(options, "api_server", "galaxy.ansibleworks.com") + api_server = get_opt(options, "api_server", "galaxy.ansible.com") no_deps = get_opt(options, "no_deps", False) if len(args) == 0 and not role_file: diff --git a/docsite/_themes/srtd/footer.html b/docsite/_themes/srtd/footer.html index ea0efc35ad2..12980f06e25 100644 --- a/docsite/_themes/srtd/footer.html +++ b/docsite/_themes/srtd/footer.html @@ -13,7 +13,7 @@

- © Copyright 2013 AnsibleWorks. + © Copyright 2013 Ansible, Inc.. {%- if last_updated %} {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %} diff --git a/hacking/README.md b/hacking/README.md index d19cda2dca0..5ac4e3de192 100644 --- a/hacking/README.md +++ b/hacking/README.md @@ -19,7 +19,7 @@ can install them from pip $ easy_install pip # if pip is not already available $ pip install pyyaml jinja2 -From there, follow ansible instructions on ansibleworks.com/docs as normal. +From there, follow ansible instructions on docs.ansible.com as normal. Test-module -----------