Source code for fabtools.require.groups

"""
System groups
=============
"""
from fabtools.group import create, exists


[docs]def group(name, gid=None): """ Require a group. :: from fabtools import require require.group('mygroup') .. note:: This function can be accessed directly from the ``fabtools.require`` module for convenience. """ # Make sure the group exists if not exists(name): create(name, gid=gid)
Read the Docs v: 0.17.0
Versions
latest
0.17.0
0.16.0
0.15.0
0.14.0
0.13.0
0.12.0
0.11.0
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.