cnc: Add stub for Concession service manager script

This commit is contained in:
Salt 2018-09-28 00:03:13 -05:00
parent 08b14ca49b
commit 054f422b28

7
cnc Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
if [ -x "$CNC_HOME/cnc" ]; then
exec "$CNC_HOME/cnc" "$@"
else
printf "cnc: not installed\n"
exit 1
fi