|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
欢迎大家来到仓酷云论坛!事情中常碰到puppet办事端/客户端证书认证非常,必要从头天生证书。罕见操纵会删除办事端/客户端证上相干的老证书,然后天生新证书。针对这类情形,编写了一个shell剧本,只需将此剧本在Client端准时运转便可。因为剧本中触及到了明文暗码,为了进步宁静性,能够思索对此剧本举行加密(可参考:http://lxsym.blog.51cto.com/1364623/768286)
#!/bin/bash
#对客户端非常从头公布puppet证书
#2012/05/30RichardShen
SIP="192.168.11.6"#server端ip
SPASSWD="hello"#server端root暗码,
host=`hostname`
s_dns=".dns.abc.com.pem"#外部DNS剖析Host-IP对应,依据实践情形而定
s_ca_name="$host$s_dns"#$host在server真个证书文件
R_NUM=`/usr/sbin/puppetd--test--serverpup-ser-01.dns.abc.com|grep"notice:Finished"|wc-l`
[!-f/usr/bin/nc]&&yum-yinstallnc
[!-f/usr/bin/expect]&&yum-yinstallexpect
#LOGINPUPPETSERVER
auto_smart_ssh(){
expect-c"settimeout-1;
spawnssh-oStrictHostKeyChecking=no$2${@:3};
expect{
*assword:*{send--$1;
expect{
*denied*{exit2;}
eof
}
}
eof{exit1;}
}
"
#return$?
}
#判别一般与否,举行2次
i=0
while[[$i-lt2]]
do
if[$R_NUM-ne1];then
rm-rf/var/lib/puppet/ssl/*
auto_smart_ssh$SPASSWDroot@$SIPrm-rf/var/lib/puppet/ssl/ca/signed/$s_ca_name
/usr/sbin/puppetd--test--serverpup-ser-01.dns.abc.com
else
echo"$hostpuppetclientisok"
fi
leti=i+1
done欢迎大家来到仓酷云论坛! |
|