summaryrefslogtreecommitdiffstats
path: root/retiolum/bin/get-tinc-dir
blob: 3f48b2cde14cca8c480e5303e8e0de636a5ea4fe (plain)
1
2
3
4
5
6
7
8
9
#!/bin/ksh
case `uname -a` in
  Linux*|CYGWIN*|MING*)   echo "/etc/tinc" 
  ;;
  SunOS*|Darwin*)   echo "/usr/local/etc/tinc" 
  ;;
  *)        echo "/etc/tinc" 
  ;;
esac