aboutsummaryrefslogtreecommitdiff
path: root/rcynic/scripts/install.sh
blob: 9c7fa3fbe0ceb68ee4a400589795719bf74be687 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh -
# $Id$

set -e

case "$1" in

freebsd*)
	cd freebsd
	. install.sh
	;;

# linux*) ;;
# darwin*) ;;
*)
	echo 1>&2 "Don't know how to install rcynic jail on platform $uname"
	exit 1
	;;
esac