Browse Source

Merge pull request #127 from twiest/pr

created a python package named openshift_ansible
Thomas Wiest 10 years ago
parent
commit
4665eaefa2
6 changed files with 9 additions and 5 deletions
  1. 1 1
      bin/openshift-ansible-bin.spec
  2. 0 0
      bin/openshift_ansible/__init__.py
  3. 2 1
      bin/awsutil.py
  4. 2 1
      bin/opssh
  5. 2 1
      bin/oscp
  6. 2 1
      bin/ossh

+ 1 - 1
bin/openshift-ansible-bin.spec

@@ -24,7 +24,7 @@ mkdir -p %{buildroot}/etc/bash_completion.d
 mkdir -p %{buildroot}/etc/openshift_ansible
 
 cp -p ossh oscp opssh %{buildroot}%{_bindir}
-cp -p awsutil.py %{buildroot}%{python_sitelib}/openshift_ansible
+cp -p openshift_ansible/* %{buildroot}%{python_sitelib}/openshift_ansible
 cp -p ossh_bash_completion %{buildroot}/etc/bash_completion.d
 
 cp -p openshift_ansible.conf.example %{buildroot}/etc/openshift_ansible/openshift_ansible.conf

+ 0 - 0
bin/openshift_ansible/__init__.py


+ 2 - 1
bin/awsutil.py

@@ -12,7 +12,8 @@ class AwsUtil(object):
 
         if inventory_path is None:
             inventory_path = os.path.realpath(os.path.join(self.file_path, \
-                                              '..','inventory','multi_ec2.py'))
+                                              '..', '..', 'inventory', \
+                                              'multi_ec2.py'))
 
         if not os.path.isfile(inventory_path):
             raise Exception("Inventory file not found [%s]" % inventory_path)

+ 2 - 1
bin/opssh

@@ -2,7 +2,6 @@
 # vim: expandtab:tabstop=4:shiftwidth=4
 
 import argparse
-import awsutil
 import traceback
 import sys
 import os
@@ -12,6 +11,8 @@ import time
 import subprocess
 import ConfigParser
 
+from openshift_ansible import awsutil
+
 DEFAULT_PSSH_PAR = 200
 PSSH = '/usr/bin/pssh'
 CONFIG_MAIN_SECTION = 'main'

+ 2 - 1
bin/oscp

@@ -2,13 +2,14 @@
 # vim: expandtab:tabstop=4:shiftwidth=4
 
 import argparse
-import awsutil
 import traceback
 import sys
 import os
 import re
 import ConfigParser
 
+from openshift_ansible import awsutil
+
 CONFIG_MAIN_SECTION = 'main'
 CONFIG_INVENTORY_OPTION = 'inventory'
 

+ 2 - 1
bin/ossh

@@ -2,13 +2,14 @@
 # vim: expandtab:tabstop=4:shiftwidth=4
 
 import argparse
-import awsutil
 import traceback
 import sys
 import os
 import re
 import ConfigParser
 
+from openshift_ansible import awsutil
+
 CONFIG_MAIN_SECTION = 'main'
 CONFIG_INVENTORY_OPTION = 'inventory'