Skip to content

Instantly share code, notes, and snippets.

@philgebhardt
Last active October 1, 2020 20:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save philgebhardt/99fb01ba54894c8b40847ae611b18b57 to your computer and use it in GitHub Desktop.
Save philgebhardt/99fb01ba54894c8b40847ae611b18b57 to your computer and use it in GitHub Desktop.
Install Gremlin on SUSE 12
#!/bin/bash
sudo zypper update \
&& sudo zypper addrepo https://rpm.gremlin.com/gremlin.repo \
&& sudo zypper refresh \
&& curl -fsSL https://rpm.gremlin.com/gremlin-pgp-public.key | xargs -0 printf "%s\n" > gremlin-pgp-public.key \
&& sudo rpm --import gremlin-pgp-public.key \
&& sudo zypper install libcap-progs \
&& sudo zypper install gremlin gremlind \
&& sed -e "\$aSSL_CERT_FILE=/etc/ssl/ca-bundle.pem" /etc/default/gremlind.example \
| sudo tee /etc/default/gremlind >/dev/null \
&& sudo systemctl restart gremlind
@Coding-Badly
Copy link

Is libcap-progs still needed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment