~1chb1n/charms/trusty/nova-cloud-controller/15.10-stable-flip-tests-helper-syncs

« back to all changes in this revision

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

  • Committer: james.page at ubuntu
  • Date: 2015-08-10 16:36:50 UTC
  • Revision ID: james.page@ubuntu.com-20150810163650-bpjo4l0dru4txcji
Tags: 15.07
[gnuoy] 15.07 Charm release

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):