Server IP : 85.214.239.14 / Your IP : 3.144.254.149 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/theforeman/foreman/plugins/modules/ |
Upload File : |
#!/usr/bin/python # -*- coding: utf-8 -*- # (c) 2018 Matthias M Dellweg (ATIX AG) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. from __future__ import absolute_import, division, print_function __metaclass__ = type DOCUMENTATION = ''' --- module: setting version_added: 1.0.0 short_description: Manage Settings description: - Manage Settings author: - "Matthias M Dellweg (@mdellweg) ATIX AG" options: name: description: - Name of the Setting required: true type: str value: description: - value to set the Setting to - if missing, reset to default required: false type: raw notes: - To obtain a list of possible settings for your installation, use the M(theforeman.foreman.setting_info) module or the C(hammer settings list) command and look for the C(name) attribute. - The web interface by default shows the C(full_name) attribute, which can't be used with this module. extends_documentation_fragment: - theforeman.foreman.foreman ''' EXAMPLES = ''' - name: "Set a Setting" theforeman.foreman.setting: username: "admin" password: "changeme" server_url: "https://foreman.example.com" name: "http_proxy" value: "http://localhost:8088" - name: "Reset a Setting" theforeman.foreman.setting: username: "admin" password: "changeme" server_url: "https://foreman.example.com" name: "http_proxy" ''' RETURN = ''' foreman_setting: description: Created / Updated state of the setting (deprecated) returned: success type: dict entity: description: Final state of the affected entities grouped by their type. returned: success type: dict contains: settings: description: List of settings. type: list elements: dict ''' from ansible_collections.theforeman.foreman.plugins.module_utils.foreman_helper import ForemanStatelessEntityAnsibleModule, parameter_value_to_str class ForemanSettingModule(ForemanStatelessEntityAnsibleModule): pass def main(): module = ForemanSettingModule( foreman_spec=dict( name=dict(required=True), value=dict(type='raw'), ), ) with module.api_connection(): entity = module.lookup_entity('entity') if 'value' not in module.foreman_params: module.foreman_params['value'] = entity['default'] or '' settings_type = entity['settings_type'] new_value = module.foreman_params['value'] # Allow to pass integers as string if settings_type == 'integer': new_value = int(new_value) module.foreman_params['value'] = parameter_value_to_str(new_value, settings_type) old_value = entity['value'] entity['value'] = parameter_value_to_str(old_value, settings_type) entity = module.ensure_entity('settings', module.foreman_params, entity, state='present') if entity: # Fake the not serialized input value as output entity['value'] = new_value module.exit_json(foreman_setting=entity) if __name__ == '__main__': main()