brightcomputing.installer91.free_group_ids_between (16.0.217+gite4609b2) — module

Calculates free group ids between the from and to options

Authors: Mohamed Abidi <mabidi@nvidia.com>

Install collection

Install with ansible-galaxy collection install brightcomputing.installer91:==16.0.217+gite4609b2


Add to requirements.yml

  collections:
    - name: brightcomputing.installer91
      version: 16.0.217+gite4609b2

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Collect valid group and user ids from 100 to 200
  brightcomputing.installer91.free_group_ids_between:
    from: 100
    to: 200
    users:
        - slurm
        - openlava
        - pbsdata
    groups:
        - slurm
        - openlava
        - pbsdata

Inputs

    
to:
    description:
    - The start value for the range of group ids to return.
    required: true
    type: int

from:
    description:
    - The start value for the range of group ids to return.
    required: true
    type: int

users:
    description:
    - A list of UNIX user names to use the return free_user_ids to create.
    required: true
    type: list

groups:
    description:
    - A list of UNIX group names to use the return free_group_ids to create.
    required: true
    type: list