brightcomputing.installer100.free_group_ids_between (23.9.313+gite4f1f01) — 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.installer100:==23.9.313+gite4f1f01


Add to requirements.yml

  collections:
    - name: brightcomputing.installer100
      version: 23.9.313+gite4f1f01

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.installer100.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