Merge "Merge the merge_yaml and merge_config module into one"
This commit is contained in:
commit
0e7697505b
@ -15,6 +15,41 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
---
|
||||||
|
module: merge_configs
|
||||||
|
short_description: Merge ini-style configs
|
||||||
|
description:
|
||||||
|
- ConfigParser is used to merge several ini-style configs into one
|
||||||
|
options:
|
||||||
|
dest:
|
||||||
|
description:
|
||||||
|
- The destination file name
|
||||||
|
required: True
|
||||||
|
type: str
|
||||||
|
sources:
|
||||||
|
description:
|
||||||
|
- A list of files on the destination node to merge together
|
||||||
|
default: None
|
||||||
|
required: True
|
||||||
|
type: str
|
||||||
|
author: Sam Yaple
|
||||||
|
'''
|
||||||
|
|
||||||
|
EXAMPLES = '''
|
||||||
|
Merge multiple configs:
|
||||||
|
|
||||||
|
- hosts: database
|
||||||
|
tasks:
|
||||||
|
- name: Merge configs
|
||||||
|
merge_configs:
|
||||||
|
sources:
|
||||||
|
- "/tmp/config_1.cnf"
|
||||||
|
- "/tmp/config_2.cnf"
|
||||||
|
- "/tmp/config_3.cnf"
|
||||||
|
dest:
|
||||||
|
- "/etc/mysql/my.cnf"
|
||||||
|
'''
|
||||||
|
|
||||||
import collections
|
import collections
|
||||||
import inspect
|
import inspect
|
||||||
|
@ -15,6 +15,41 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
---
|
||||||
|
module: merge_yaml
|
||||||
|
short_description: Merge yaml-style configs
|
||||||
|
description:
|
||||||
|
- PyYAML is used to merge several yaml files into one
|
||||||
|
options:
|
||||||
|
dest:
|
||||||
|
description:
|
||||||
|
- The destination file name
|
||||||
|
required: True
|
||||||
|
type: str
|
||||||
|
sources:
|
||||||
|
description:
|
||||||
|
- A list of files on the destination node to merge together
|
||||||
|
default: None
|
||||||
|
required: True
|
||||||
|
type: str
|
||||||
|
author: Sean Mooney
|
||||||
|
'''
|
||||||
|
|
||||||
|
EXAMPLES = '''
|
||||||
|
Merge multiple yaml files:
|
||||||
|
|
||||||
|
- hosts: localhost
|
||||||
|
tasks:
|
||||||
|
- name: Merge yaml files
|
||||||
|
merge_yaml:
|
||||||
|
sources:
|
||||||
|
- "/tmp/default.yml"
|
||||||
|
- "/tmp/override.yml"
|
||||||
|
dest:
|
||||||
|
- "/tmp/out.yml"
|
||||||
|
'''
|
||||||
|
|
||||||
import inspect
|
import inspect
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
|
@ -1,51 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
|
|
||||||
# Copyright 2015 Sam Yaple
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
|
||||||
---
|
|
||||||
module: merge_configs
|
|
||||||
short_description: Merge ini-style configs
|
|
||||||
description:
|
|
||||||
- ConfigParser is used to merge several ini-style configs into one
|
|
||||||
options:
|
|
||||||
dest:
|
|
||||||
description:
|
|
||||||
- The destination file name
|
|
||||||
required: True
|
|
||||||
type: str
|
|
||||||
sources:
|
|
||||||
description:
|
|
||||||
- A list of files on the destination node to merge together
|
|
||||||
default: None
|
|
||||||
required: True
|
|
||||||
type: str
|
|
||||||
author: Sam Yaple
|
|
||||||
'''
|
|
||||||
|
|
||||||
EXAMPLES = '''
|
|
||||||
Merge multiple configs:
|
|
||||||
|
|
||||||
- hosts: database
|
|
||||||
tasks:
|
|
||||||
- name: Merge configs
|
|
||||||
merge_configs:
|
|
||||||
sources:
|
|
||||||
- "/tmp/config_1.cnf"
|
|
||||||
- "/tmp/config_2.cnf"
|
|
||||||
- "/tmp/config_3.cnf"
|
|
||||||
dest:
|
|
||||||
- "/etc/mysql/my.cnf"
|
|
||||||
'''
|
|
@ -1,51 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
|
|
||||||
# Copyright 2015 Sam Yaple
|
|
||||||
# Copyright 2016 intel
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
|
||||||
---
|
|
||||||
module: merge_yaml
|
|
||||||
short_description: Merge yaml-style configs
|
|
||||||
description:
|
|
||||||
- PyYAML is used to merge several yaml files into one
|
|
||||||
options:
|
|
||||||
dest:
|
|
||||||
description:
|
|
||||||
- The destination file name
|
|
||||||
required: True
|
|
||||||
type: str
|
|
||||||
sources:
|
|
||||||
description:
|
|
||||||
- A list of files on the destination node to merge together
|
|
||||||
default: None
|
|
||||||
required: True
|
|
||||||
type: str
|
|
||||||
author: Sean Mooney
|
|
||||||
'''
|
|
||||||
|
|
||||||
EXAMPLES = '''
|
|
||||||
Merge multiple yaml files:
|
|
||||||
|
|
||||||
- hosts: localhost
|
|
||||||
tasks:
|
|
||||||
- name: Merge yaml files
|
|
||||||
merge_yaml:
|
|
||||||
sources:
|
|
||||||
- "/tmp/default.yml"
|
|
||||||
- "/tmp/override.yml"
|
|
||||||
dest:
|
|
||||||
- "/tmp/out.yml"
|
|
||||||
'''
|
|
Loading…
Reference in New Issue
Block a user