saltstack添加一个Linux用户
Posted 流光给给
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了saltstack添加一个Linux用户相关的知识,希望对你有一定的参考价值。
官网地址:https://docs.saltstack.com/en/latest/ref/states/all/salt.states.user.html
状态文件user.sls:
useradd: group.present: - name: hthx - gid: 1000 user.present: - name: hthx - fullname: hthx - uid: 1000 - gid: 1000 - home: /home/hthx - shell: /bin/bash - groups: - hthx - unique: True - password: ‘$1$gKBCvdRz$UiFWG4g5Nxk651jUpbNX0.‘ - enforce_password: False
用户的密码是加密过后的密码,这里通过openssl加密:
[[email protected] init]# openssl passwd -1 Password: Verifying - Password: $1$yZX/9PLG$qxmRn/vZ58ownUEWrOOnw. #<==设置密码123456,生成后的字符串
以上是关于saltstack添加一个Linux用户的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段