#!/bin/bash
# Samba-TNG                                            list_dom_groups
# --------------------------------------------------------------------

# --------------------------------------------------------------------
# config here

. ./prefs

# --------------------------------------------------------------------
# begin

$rpcclient -S . -U $rpcuser%$rpcpassword -c 'enumgroups' -d0|grep ^G|less

exit 0

# --------------------------------------------------------------------
