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.
18 lines
344 B
18 lines
344 B
#!/bin/sh -e |
|
|
|
case "$1" in |
|
proftpd) |
|
mkdir -p /etc/proftpd/conf.d/ |
|
cp $TRAVIS_BUILD_DIR/.travis/proftpd.conf /etc/proftpd/conf.d/ |
|
;; |
|
vsftpd) |
|
cp $TRAVIS_BUILD_DIR/.travis/vsftpd.conf /etc/vsftpd.conf |
|
;; |
|
*) |
|
echo "unknown software: $1" |
|
exit 1 |
|
esac |
|
|
|
mkdir --mode 0777 -p /var/ftp/incoming |
|
|
|
apt-get install -qq "$1"
|
|
|