cdist-contrib/type/__runit/explorer/svdir-exists

8 lines
78 B
Plaintext
Raw Normal View History

2021-01-11 13:10:55 +00:00
#!/bin/sh -e
svdir="/var/service"
if [ -d "${svdir}" ]; then
echo "YES"
fi