给服务器里添加只读用户的脚本

目前运维开发平台还在搭建中,这个脚本是给各位开发人员提供一份可读账号,脚本里我把账号和密码已经写死了,如果需要拓展可以自行设定变量。


整个脚本内容如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
#coding=utf-8
#Writed by Chris Chan@2017-03-07
 
import  os
import  time
import  commands
import  pexpect
 
def  AddUser() :
     ret  =  ''
     ret  =  commands.getoutput( "grep '账号名' /etc/passwd" )
     if  ''  = =  ret :
         try  :
             print  ( "用户不存在,开始新建用户\n%s"  % ret)
             commands.getoutput( "useradd xuchunbo" )
         except :
             (ErrorType, ErrorValue, ErrorTB)  =  sys.exc_info()                                #Connect异常,收集错误信息,不退出脚本
             print  ( "新建用户失败,错误信息: \n%s"  % ErrorValue)
     else  :
         print  ( "用户已存在,无需新建用户\n%s"  % ret)
     try  :
         child  =  pexpect.spawn( "passwd 账号名" , timeout  =  5 )
         child.expect( "New password:" )
         child.sendline( "密码" )
         child.expect( "Retype new password:" )
         child.sendline( "密码" )
         child.expect( "passwd: all authentication tokens updated successfully" )
         
     except  pexpect.EOF :
         pass
     except  pexpect.TIMEOUT :
         pass
     except  :
         (ErrorType, ErrorValue, ErrorTB)  =  sys.exc_info()                                    #Connect异常,收集错误信息,不退出脚本
         print  ( "修改用户密码失败,错误信息: \n%s"  % ErrorValue)                               #打印错误信息
     finally  :
         print  ( "用户密码修改成功!\n" )
         
if  __name__  = =  '__main__'  :
     AddUser()


如果批处理的话,就搭配ansible操作即可。



 本文转自 苏幕遮618 51CTO博客,原文链接:http://blog.51cto.com/chenx1242/1904009


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值