Matthias Stecher
b55186544f
Adding a place to keep all configuration stuff for cdist seperated from the installation directory. For safety reasons.
5 lines
137 B
Bash
Executable file
5 lines
137 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
# output version if exist
|
|
version_path="/opt/netbox/cdist/version"
|
|
if [ -f "$version_path" ]; then cat "$version_path"; fi
|