Fuzzball Documentation
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

Listing Group Members

You can list the members of a Fuzzball group using the CLI fuzzball group member list command. Group members and their owner status can also be viewed through the Web UI.

Synopsis

$ fuzzball group member list [flags]

Filtering by Owner Status

By default, this returns everyone, both owners and regular members. Use --owner to list only owners, or --owner=false to list only non-owners.

Examples

List all members (owners and non-owners) of the group research-lab:

$ fuzzball group member list --group=research-lab

List only the owners of the group:

$ fuzzball group member list --owner --group=research-lab

List only non-owner members:

$ fuzzball group member list --owner=false --group=research-lab