blob: 1fd520217a866f302ba0e6cb348de9c5f47c5160 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
exec 2>&1
. /etc/profile
. /etc/systemconfig
export TERM=linux
. /etc/rc.conf
. /etc/rc.d/functions
stat_runit "Starting VSFTPD"
export HOME=/root
# Start vsftpd
/usr/sbin/vsftpd /etc/vsftpd.conf
|