Skip to content

Commit

Permalink
fix: jans-linux-setup move mysql-timezone to config
Browse files Browse the repository at this point in the history
  • Loading branch information
devrimyatar committed May 3, 2022
1 parent 1474b84 commit 31df7db
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 1 addition & 0 deletions jans-linux-setup/jans_setup/setup_app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ def progress(self, service_name, msg, incr=False):
'oxauthClient_4_inum': 'FF81-2D39',
'idp_attribute_resolver_ldap.search_filter': '(|(uid=$requestContext.principalName)(mail=$requestContext.principalName))',
'oxd_port': '8443',
'server_time_zone': 'UTC' + time.strftime("%z"),
}

# java commands
Expand Down
4 changes: 0 additions & 4 deletions jans-linux-setup/jans_setup/setup_app/installers/rdbm.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,12 +361,8 @@ def import_ldif(self):

self.dbUtils.import_ldif(ldif_files)

def server_time_zone(self):
Config.templateRenderingDict['server_time_zone'] = 'UTC' + time.strftime("%z")

def rdbmProperties(self):
if Config.rdbm_type in ('sql', 'mysql'):
self.server_time_zone()
Config.rdbm_password_enc = self.obscure(Config.rdbm_password)
self.renderTemplateInOut(Config.jansRDBMProperties, Config.templateFolder, Config.configFolder)

Expand Down
1 change: 0 additions & 1 deletion jans-linux-setup/jans_setup/setup_app/test_data_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ def load_test_data(self):
config_oxauth_test_properties += '\n#spanner\n' + rendered_text

else:
base.current_app.RDBMInstaller.server_time_zone()
template_text = self.readFile(os.path.join(self.template_base, 'jans-auth/server/config-oxauth-test-sql.properties.nrnd'))
rendered_text = self.fomatWithDict(template_text, self.merge_dicts(Config.__dict__, Config.templateRenderingDict))
config_oxauth_test_properties += '\n#sql\n' + rendered_text
Expand Down

0 comments on commit 31df7db

Please sign in to comment.