~junaidali/charms/trusty/plumgrid-director/pg-restart

« back to all changes in this revision

Viewing changes to hooks/charmhelpers/core/services/helpers.py

  • Committer: bbaqar at plumgrid
  • Date: 2015-07-29 18:07:31 UTC
  • Revision ID: bbaqar@plumgrid.com-20150729180731-ioynar8x3u5pxytc
Addressed reviews by Charmers

Show diffs side-by-side

added added

removed removed

Lines of Context:
239
239
    action.
240
240
 
241
241
    :param str source: The template source file, relative to
242
 
    `$CHARM_DIR/templates`
243
 
 
 
242
        `$CHARM_DIR/templates`
244
243
    :param str target: The target to write the rendered template to
245
244
    :param str owner: The owner of the rendered file
246
245
    :param str group: The group of the rendered file
247
246
    :param int perms: The permissions of the rendered file
 
247
 
248
248
    """
249
249
    def __init__(self, source, target,
250
250
                 owner='root', group='root', perms=0o444):