Skip to content

Commit

Permalink
Merge pull request #38 from varkoly/SLE-15-SP6
Browse files Browse the repository at this point in the history
Setup workflow is bad bsc#1217596 SLE-15-SP6
  • Loading branch information
varkoly committed Feb 14, 2024
2 parents 1bc2ab3 + 848b21a commit a11ba45
Show file tree
Hide file tree
Showing 91 changed files with 1,803 additions and 2,143 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -15,4 +15,6 @@ package/yast2-sap-ha-*.tar.bz2
.byebug_history
.vscode/
.vs/
sap_ha_unattended_install_log.txt
sap_ha_unattended_install_log.txt

.tmp/
16 changes: 0 additions & 16 deletions .solargraph.yml

This file was deleted.

6 changes: 0 additions & 6 deletions .yardopts
@@ -1,7 +1 @@
--no-private
--protected
--markup markdown
--output-dir doc/autodocs
--readme README.md
--file doc/yast-sap-ha.md
src/**/*.rb
1 change: 0 additions & 1 deletion Rakefile
Expand Up @@ -29,4 +29,3 @@ Yast::Tasks.configuration do |conf|
conf.exclude_files << /test/
conf.exclude_files << /aux/
end

11 changes: 0 additions & 11 deletions aux/config.yml
Expand Up @@ -122,17 +122,6 @@ cluster: !ruby/object:SapHA::Configuration::Cluster
- :@keys
- :@append_hosts
- :@host_passwords
cluster_finalizer: !ruby/object:SapHA::Configuration::ClusterFinalizer
global_config: *5
screen_name: Cluster Configuration Finalizer
exception_type: &6 !ruby/class 'SapHA::Exceptions::BaseConfigException'
yaml_exclude:
- :@nlog
instance_variables:
- :@global_config
- :@screen_name
- :@exception_type
- :@yaml_exclude
fencing: !ruby/object:SapHA::Configuration::Fencing
global_config: *5
screen_name: Fencing Mechanism
Expand Down
11 changes: 0 additions & 11 deletions aux/config_prd.yml
Expand Up @@ -121,17 +121,6 @@ cluster: !ruby/object:SapHA::Configuration::Cluster
- :@enable_csync2
- :@keys
- :@append_hosts
cluster_finalizer: !ruby/object:SapHA::Configuration::ClusterFinalizer
global_config: *5
screen_name: Cluster Configuration Finalizer
exception_type: &6 !ruby/class 'SapHA::Exceptions::BaseConfigException'
yaml_exclude:
- :@nlog
instance_variables:
- :@global_config
- :@screen_name
- :@exception_type
- :@yaml_exclude
fencing: !ruby/object:SapHA::Configuration::Fencing
global_config: *5
screen_name: Fencing Mechanism
Expand Down
11 changes: 0 additions & 11 deletions aux/config_prd_sps03.yml
Expand Up @@ -122,17 +122,6 @@ cluster: !ruby/object:SapHA::Configuration::Cluster
- :@enable_csync2
- :@keys
- :@append_hosts
cluster_finalizer: !ruby/object:SapHA::Configuration::ClusterFinalizer
global_config: *5
screen_name: Cluster Configuration Finalizer
exception_type: &6 !ruby/class 'SapHA::Exceptions::BaseConfigException'
yaml_exclude:
- :@nlog
instance_variables:
- :@global_config
- :@screen_name
- :@exception_type
- :@yaml_exclude
fencing: !ruby/object:SapHA::Configuration::Fencing
global_config: *5
screen_name: Fencing Mechanism
Expand Down
15 changes: 15 additions & 0 deletions aux/is_hana_running.sh
@@ -0,0 +1,15 @@
#!/bin/bash
#

while true
do
if [ "$( /usr/sap/hostctrl/exe/sapcontrol -nr 00 -function GetProcessList | grep hdbindexserver )" ]; then
echo -n "RUN " >> /var/log/hana-state
date >> /var/log/hana-state
else
echo -n "NOT " >> /var/log/hana-state
date >> /var/log/hana-state
fi
sleep 1
done

96 changes: 0 additions & 96 deletions data/tmpl_cluster_config.erb

This file was deleted.

88 changes: 0 additions & 88 deletions data/tmpl_srhook.py.erb

This file was deleted.

0 comments on commit a11ba45

Please sign in to comment.