We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19696c9 commit 1178b3cCopy full SHA for 1178b3c
1 file changed
integration_test/third_party_apps_test/applications/elasticsearch/sles/install
@@ -38,5 +38,12 @@ sudo zypper install -y elasticsearch
38
sudo zypper modifyrepo --disable elasticsearch
39
40
sudo systemctl daemon-reload
41
+
42
+if [[ "$SUSE_VERSION" == 16 ]] && [ ! -f /usr/lib/systemd/systemd-sysv-install ]; then
43
+ sudo mkdir -p /usr/lib/systemd
44
+ echo -e '#!/bin/sh\nexit 0' | sudo tee /usr/lib/systemd/systemd-sysv-install > /dev/null
45
+ sudo chmod +x /usr/lib/systemd/systemd-sysv-install
46
+fi
47
48
sudo systemctl enable elasticsearch
49
sudo systemctl restart elasticsearch
0 commit comments