You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
269 B
11 lines
269 B
10 years ago
|
#!/bin/bash
|
||
|
|
||
|
if [ ! -d dante-1.4.0 ]; then
|
||
|
wget http://www.inet.no/dante/files/dante-1.4.0.tar.gz || exit 1
|
||
|
tar xf dante-1.4.0.tar.gz || exit 1
|
||
|
fi
|
||
|
pushd dante-1.4.0
|
||
|
./configure && make && make install || exit 1
|
||
|
popd
|
||
|
cp tests/socksify/socks.conf /etc/ || exit 1
|