Skip to content

Commit

Permalink
Updates cluster file so new users select the next available gid by de…
Browse files Browse the repository at this point in the history
…fault
  • Loading branch information
xksteven committed Jun 21, 2023
1 parent ba43066 commit e1bfc9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playbooks/roles/cluster-cli/files/cluster
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def list():
confirmation_prompt=True)
@click.option('-n', '--name', prompt='Full Name', required=True)
@click.option('-i', '--uid', default=None, help='Select the userID')
@click.option('-g', '--gid', default="9876", help='Add to this groupID')
@click.option('-g', '--gid', default=None, help='Add to this groupID')
@click.option('-nossh', '--nossh', is_flag=True, default=False, help='Flag to not generate a user-specific ssh-key pair for passwordless ssh.')
def add(user, password, uid, gid, name, nossh):
""" add user """
Expand Down

0 comments on commit e1bfc9c

Please sign in to comment.