17 lines
865 B
Plaintext
17 lines
865 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
mkdir -p /opt/nomad/data
|
||
|
chown nomad:nomad /opt/nomad/data
|
||
|
chown -R nomad:nomad /etc/nomad.d
|
||
|
|
||
|
if [ -d /run/systemd/system ]; then
|
||
|
systemctl --system daemon-reload >/dev/null || true
|
||
|
fi
|
||
|
|
||
|
if [[ $(nomad version) == *+ent* ]]; then
|
||
|
echo "
|
||
|
The following shall apply unless your organization has a separately signed Enterprise License Agreement or Evaluation Agreement governing your use of the software:
|
||
|
Software in this repository is subject to the license terms located in the software, copies of which are also available at https://eula.hashicorp.com/ClickThruELA-Global.pdf or https://www.hashicorp.com/terms-of-evaluation as applicable. Please read the license terms prior to using the software. Your installation and use of the software constitutes your acceptance of these terms. If you do not accept the terms, do not use the software.
|
||
|
"
|
||
|
fi
|