• Saltstack module group 详解


    group.delete

    Remove the named group
    
    name
        Name group to delete
    
    root
        Directory to chroot into
    
    CLI Example:
    
        salt '*' group.delete foo
    

    group.members

    Replaces members of the group with a provided list.
    
    name
        Name of the group to modify
    
    members_list
        Username list to set into the group
    
    root
        Directory to chroot into
    
    CLI Example:
    
        salt '*' group.members foo 'user1,user2,user3,...'
    
    Replaces a membership list for a local group 'foo'.
        foo:x:1234:user1,user2,user3,...
    

    group.getent

    Return info on all groups
    
    refresh
        Force a refresh of group information
    
    root
        Directory to chroot into
    
    CLI Example:
    
        salt '*' group.getent
    

    group.add

    Add the specified group
    
    name
        Name of the new group
    
    gid
        Use GID for the new group
    
    system
        Create a system account
    
    root
        Directory to chroot into
    
    CLI Example:
    
        salt '*' group.add foo 3456
    

    group.deluser

    Remove a user from the group.
    
    name
        Name of the group to modify
    
    username
        Username to delete from the group
    
    root
        Directory to chroot into
    
    CLI Example:
    
         salt '*' group.deluser foo bar
    
    Removes a member user 'bar' from a group 'foo'. If group is not present
    then returns True.
    

    group.chgid

    Change the gid for a named group
    
    name
        Name of the group to modify
    
    gid
        Change the group ID to GID
    
    root
        Directory to chroot into
    
    CLI Example:
    
        salt '*' group.chgid foo 4376
    

    group.adduser

    Add a user in the group.
    
    name
        Name of the group to modify
    
    username
        Username to add to the group
    
    root
        Directory to chroot into
    
    CLI Example:
    
         salt '*' group.adduser foo bar
    
    Verifies if a valid username 'bar' as a member of an existing group 'foo',
    if not then adds it.
    

    group.info

    Return information about a group
    
    name
        Name of the group
    
    root
        Directory to chroot into
    
    CLI Example:
    
        salt '*' group.info foo
  • 相关阅读:
    植物大战僵尸 辅助 总结
    C# 操作地址 从内存中读取写入数据(初级)
    c# math
    c# 获取屏幕图片
    从客户端(editorValue="<p>xxxx</p>")中检测到有潜在危险的 Request.Form 值。
    三种常见的SQL分页语句
    Windows Installer 服务无法启动!
    无法访问windows installer服务
    mssql2000数据库执行SQL语句来创建数据库以及数据表还有索引
    如何安装aspjpeg
  • 原文地址:https://www.cnblogs.com/randomlee/p/Saltstack_module_group.html
Copyright © 2020-2023  润新知