You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by ve...@apache.org on 2015/08/25 01:35:29 UTC

incubator-ranger git commit: RANGER-624 : Fix Windows installation issue after SQLAnywhere support

Repository: incubator-ranger
Updated Branches:
  refs/heads/master beb085129 -> 5026f1952


RANGER-624 : Fix Windows installation issue after SQLAnywhere support

Signed-off-by: Velmurugan Periasamy <ve...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/incubator-ranger/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ranger/commit/5026f195
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ranger/tree/5026f195
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ranger/diff/5026f195

Branch: refs/heads/master
Commit: 5026f1952dbf2e69cf3c21249318f824ec9fdfe8
Parents: beb0851
Author: Gautam Borad <gb...@gmail.com>
Authored: Sat Aug 22 03:42:47 2015 +0530
Committer: Velmurugan Periasamy <ve...@apache.org>
Committed: Mon Aug 24 16:35:10 2015 -0700

----------------------------------------------------------------------
 security-admin/src/bin/ranger_install.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/5026f195/security-admin/src/bin/ranger_install.py
----------------------------------------------------------------------
diff --git a/security-admin/src/bin/ranger_install.py b/security-admin/src/bin/ranger_install.py
index 42142fe..2970715 100644
--- a/security-admin/src/bin/ranger_install.py
+++ b/security-admin/src/bin/ranger_install.py
@@ -310,6 +310,8 @@ def init_variables(switch):
     conf_dict['postgres_audit_file']=os.path.join(db_dir,'postgres','xa_audit_db_postgres.sql')
     conf_dict['sqlserver_core_file']=os.path.join(db_dir,'sqlserver','xa_core_db_sqlserver.sql')
     conf_dict['sqlserver_audit_file']=os.path.join(db_dir,'sqlserver','xa_audit_db_sqlserver.sql')
+    conf_dict['sqlanywhere_core_file']= os.path.join(db_dir,'sqlanywhere','xa_core_db_sqlanywhere.sql')
+    conf_dict['sqlanywhere_audit_file']= os.path.join(db_dir, 'sqlanywhere','xa_audit_db_sqlanywhere.sql')
     #conf_dict['db_core_file']           = os.path.join(db_dir, "xa_core_db.sql")
     #conf_dict['db_create_user_file']    = os.path.join(db_dir, "create_dev_user.sql")
     #conf_dict['db_audit_file']          = os.path.join(db_dir, "xa_audit_db.sql")
@@ -1281,4 +1283,4 @@ def configure():
     # copy_mysql_connector()
     #log(" --------- Creatin Audit DB --------- ","info")
     setup_admin_db_user()
-    setup_audit_user_db()
\ No newline at end of file
+    setup_audit_user_db()