We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50699f5 commit e2c4dd7Copy full SHA for e2c4dd7
quickstart/stackable-quickstart.sh
@@ -1,6 +1,12 @@
1
#!/bin/bash
2
# Install a single node deployment of Stackable
3
4
+if [ $UID != 0 ]
5
+then
6
+ echo "This script must be run as root, exiting."
7
+ exit 1
8
+fi
9
+
10
# This is a dirty hack to get two K8s nodes running on a single machine.
11
# Use the shortname if hostname returns the FQDN or vice versa.
12
if [ "$(hostname -s)" = "$(hostname -f)" ]; then
0 commit comments