Skip to content
Snippets Groups Projects
Commit 590bcd31 authored by Bob Mottram's avatar Bob Mottram
Browse files

Check that repo clone happens

parent c247d4c6
No related branches found
No related tags found
No related merge requests found
......@@ -143,6 +143,10 @@ function install_mesh_tunnel {
chroot "$rootdir" apt-get -yq install iproute bridge-utils libnetfilter-conntrack3 python-dev libevent-dev ebtables python-pip git
git clone https://github.com/wlanslovenija/tunneldigger $rootdir/opt/tunneldigger
if [ ! -d $rootdir/opt/tunneldigger/client ]; then
echo $'Unable to clone tunneldigger repo'
exit 1987453
fi
cd $rootdir/opt/tunneldigger/client
chroot "$rootdir" make
if [ ! -f $rootdir/opt/tunneldigger/client/l2tp_client ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment