diff options
author | Andrew Butcher <abutcher@afrolegs.com> | 2017-01-25 11:37:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-25 11:37:48 -0500 |
commit | d8fee0cc8441812cdd5e7aaae815adad7a9bbee7 (patch) | |
tree | 81aafd9b795aeab7d64e1ae94fc72b3e5c7c576d /roles/lib_utils/library | |
parent | 22706eb1bef19329ac0e72303d02f1c47e48e825 (diff) | |
parent | cf5f85ff884107cfba3ac929d2f731d98f467ce0 (diff) | |
download | openshift-d8fee0cc8441812cdd5e7aaae815adad7a9bbee7.tar.gz openshift-d8fee0cc8441812cdd5e7aaae815adad7a9bbee7.tar.bz2 openshift-d8fee0cc8441812cdd5e7aaae815adad7a9bbee7.tar.xz openshift-d8fee0cc8441812cdd5e7aaae815adad7a9bbee7.zip |
Merge pull request #3141 from tbielawa/fragment_banners
Fragment banners
Diffstat (limited to 'roles/lib_utils/library')
-rw-r--r-- | roles/lib_utils/library/yedit.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/roles/lib_utils/library/yedit.py b/roles/lib_utils/library/yedit.py index 6a5b40dcc..8a2bd92f9 100644 --- a/roles/lib_utils/library/yedit.py +++ b/roles/lib_utils/library/yedit.py @@ -24,6 +24,8 @@ # limitations under the License. # +# -*- -*- -*- Begin included fragment: class/import.py -*- -*- -*- + # pylint: disable=wrong-import-order import json import os @@ -33,6 +35,10 @@ import ruamel.yaml as yaml import shutil from ansible.module_utils.basic import AnsibleModule +# -*- -*- -*- End included fragment: class/import.py -*- -*- -*- + +# -*- -*- -*- Begin included fragment: doc/yedit -*- -*- -*- + DOCUMENTATION = ''' --- module: yedit @@ -168,6 +174,10 @@ EXAMPLES = ''' # b: # c: d ''' + +# -*- -*- -*- End included fragment: doc/yedit -*- -*- -*- + +# -*- -*- -*- Begin included fragment: class/yedit.py -*- -*- -*- # noqa: E301,E302 @@ -733,6 +743,10 @@ class Yedit(object): return {'failed': True, 'msg': 'Unkown state passed'} +# -*- -*- -*- End included fragment: class/yedit.py -*- -*- -*- + +# -*- -*- -*- Begin included fragment: ansible/yedit.py -*- -*- -*- + # pylint: disable=too-many-branches def main(): @@ -772,3 +786,5 @@ def main(): if __name__ == '__main__': main() + +# -*- -*- -*- End included fragment: ansible/yedit.py -*- -*- -*- |