summaryrefslogtreecommitdiff
path: root/ironic_python_agent/cmd/agent.py
diff options
context:
space:
mode:
authorJosh Gachnang <josh@pcsforeducation.com>2014-03-19 16:19:52 -0700
committerJosh Gachnang <josh@pcsforeducation.com>2014-03-19 16:19:52 -0700
commit5914e36b30d429648d626ee37f8969bfbf450186 (patch)
treef935a37dc9175f4016fdb73a616b7341ec9d6f05 /ironic_python_agent/cmd/agent.py
parentb30d345c2e8ec77935558f75080f734daa3ca4f0 (diff)
downloadironic-python-agent-5914e36b30d429648d626ee37f8969bfbf450186.tar.gz
Replacing teeth/overlord with ipa/ironic
Diffstat (limited to 'ironic_python_agent/cmd/agent.py')
-rw-r--r--ironic_python_agent/cmd/agent.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ironic_python_agent/cmd/agent.py b/ironic_python_agent/cmd/agent.py
index a30b8a9c..e12d37d0 100644
--- a/ironic_python_agent/cmd/agent.py
+++ b/ironic_python_agent/cmd/agent.py
@@ -16,17 +16,17 @@ limitations under the License.
import argparse
-from teeth_agent import agent
+from ironic_python_agent import agent
def run():
parser = argparse.ArgumentParser(
description=('An agent that handles decomissioning and provisioning'
- ' on behalf of teeth-overlord.'))
+ ' on behalf of Ironic.'))
parser.add_argument('--api-url',
required=True,
- help='URL of the Teeth agent API')
+ help='URL of the Ironic API')
parser.add_argument('--listen-host',
default='0.0.0.0',