首页 > 代码库 > LDAP认证客户端、自动挂载用户家目录shell脚本配置
LDAP认证客户端、自动挂载用户家目录shell脚本配置
这个是LDAP认证客户端与自动挂载家目录shell脚本配置,使用“authconfig-tui”图形化配置简单,但是后面需要手动操作,自动写入配置文件还没有研究透彻。以后完善
#!/bin/bash yum install -y nss-pam-ldapd nfs-utils nfs autofs pam_ldap openldap openldap-clients #showmount -e 172.16.16.22 automaster="/etc/auto.master" automisc="/etc/auto.misc" ldaphomedir="/ldapdir/users" [ -d "$ldaphomedir" ] || mkdir -p "$ldaphomedir" cat /etc/auto.misc | grep "172.16.16.22" &>/dev/null if [ $? -eq 0 ]; then echo echo ‘"Autofs 172.16.16.22 is EXIST‘ sleep 2 elif [ -f "$automisc" -a -f "$automaster"]; then sed -i ‘$a /ldapdir /etc/auto.misc‘ $automaster sed -i ‘$a * 172.16.16.22:/ldapdir/users‘ $automisc else echo "autofs is NOT exist " fi /etc/init.d/autofs restart chkconfig autofs on head -n 20 <<EOF ###################################################################### #The next step configuration LDAP authentication information # #Press the "space" key to select "*" # #First: # # Use LDAP ----------------------"*" # # Use MD5 Passwords--------------"*" # # Use Shadow Passwords-----------"*" # # Use LDAP Authentication--------"*" # #Second: # #BASE dc=zxsoft,dc=com # #URI ldap://172.16.16.22 # #you can remember this# # ###################################################################### EOF echo read -p "continue Y or N:" select case $select in "Y"|"y") authconfig-tui;; "N"|"n") exit 2;; *) echo "Input Error" && exit 3 ;; esac
本文出自 “土豆IT” 博客,请务必保留此出处http://malin314.blog.51cto.com/7206614/1864966
LDAP认证客户端、自动挂载用户家目录shell脚本配置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。