Skip to content
Snippets Groups Projects
Commit 2864fb06 authored by Anders Harrisson's avatar Anders Harrisson
Browse files

Fix incorrect paths

parent fde0cf24
No related branches found
Tags v0.9.0
No related merge requests found
Pipeline #26236 passed
...@@ -5,7 +5,7 @@ import testinfra.utils.ansible_runner ...@@ -5,7 +5,7 @@ import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all') os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
PHOEBUS_VERSION = '4.6.0-SNAPSHOT' PHOEBUS_VERSION = '4.6.0'
def test_default(host): def test_default(host):
...@@ -22,7 +22,7 @@ def test_default(host): ...@@ -22,7 +22,7 @@ def test_default(host):
def test_settings(host): def test_settings(host):
settings = host.file("/opt/ess-phoebus-{}/phoebus.ini".format(PHOEBUS_VERSION)) settings = host.file("/opt/ess-cs-studio-phoebus-{}/phoebus.ini".format(PHOEBUS_VERSION))
assert settings.exists assert settings.exists
assert settings.is_file assert settings.is_file
assert settings.contains("org.phoebus.pv.ca/addr_list=127.0.0.1") assert settings.contains("org.phoebus.pv.ca/addr_list=127.0.0.1")
#!/usr/bin/env bash #!/usr/bin/env bash
PHOEBUS_OPTS="{{ phoebus_options }}" PHOEBUS_OPTS="{{ phoebus_options }}"
PHOEBUS_JAR={{ phoebus_home }}/ess-phoebus-{{ phoebus_version }}.jar PHOEBUS_JAR={{ phoebus_home }}/ess-cs-studio-phoebus-{{ phoebus_version }}.jar
if [[ -d /opt/conda/envs/csstudio/bin ]] if [[ -d /opt/conda/envs/csstudio/bin ]]
then then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment