collective.recipe.grp

A buildout recipe that enables access to the UNIX group id.

View the Project on GitHub collective/collective.recipe.grp

This recipe can be used to get a hold of the user's UNIX group id:


        [buildout]
        extends =
          http://build.pythonpackages.com/buildout/plone/latest
        parts += chown

        [env]
        recipe = gocept.recipe.env

        [grp]
        recipe = collective.recipe.grp

        [chown]
        recipe = plone.recipe.command
        command =
          chown -R ${env:USER}:${grp:GROUP} ${buildout:directory}