Shell脚本——一键安装samba服务

要求:

写一个shell脚本,能够实现一键安装并配置samba服务,执行该脚本时需要带一个共享的路径,
它是共享的目录,目录若存在,需自动创建samba。

要求,任何人都可以访问,并且不需要密码,并且是只读的。

实验:

[root@localhost ~]# vim /opt/samba.sh
#!/bin/bash
if [ "$#" -ne 1 ]
then
   echo "运行脚本格式为:$0 /dir/"
exit 1
else
   if ! echo $1 |grep -q '^/.*'
   then
        echo "请提供一个绝对路径。"
        exit 0
   fi
fi

if ! rpm -q samba >/dev/null
then
   echo "将要安装samba"
   sleep 1
   yum -y install samba
   if [ $? -ne 0 ]
   then
      echo "samba 安装失败"
      exit 1
   fi
fi

dirconf="/etc/samba/smb.conf"
cat >> $dirconf << EOF
[global]
        workgroup = workgroup
        security = user
        map to guest = bad user
[share]
        comment= share all
        path = $1
        browseable = yes
        public = yes
        writable = no
EOF

if [ ! -d $1 ]
then
   mkdir -p $1
fi

chmod 777 $1
chown nobody:nobody $1
echo "www.51xit.top" > $1/51xit.txt

systemctl start smb
if [ $? -ne 0 ]
then
   echo "samba服务启动失败,请检查配置文件是否正常"
else
   echo "samba服务启动正常"
fi

[root@localhost ~]# chmod +x /opt/samba.sh
[root@localhost ~]# /opt/samba.sh

猜你喜欢

转载自blog.csdn.net/ZG_66/article/details/108258148