这篇文章主要介绍为自动创建vsftpd虚拟用户脚本,有需要的朋友可以参考下。
脚本内容如下:
#!/bin/bash
#Date:2018-5-20 14:08:55
#Author Blog:
# https://www.yangxingzhen.com
#Author WeChat:
# 微信公众号:小柒博客
#Author mirrors site:
# https://mirrors.yangxingzhen.com
#About the Autho
# BY:YangXingZhen
# Mail:xingzhen.yang@yangxingzhen.com
#Create vsftpd virtual user(支持创建单个用户跟多个用户)
#This script applies to Centos 6.x and Centos 7.x
SYS_VERSION=`awk -F. '{print $1}' /etc/redhat-release |awk '{print $NF}'`
FTP_DIR="/etc/vsftpd"
PASSWD="yangxingzhen.com"
PAM_DIR="/etc/pam.d"
FTP_HOME="/home/ftpuser"
USER="$*"
if [ $# -eq 0 ];then
echo -e "