You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/system
Michael Scherer 6145e24ed4 Fix code for python 3
Since dict.keys return a dictkeys under python 3, we hav to cast it
to a list to avoid traceback:

    Traceback (most recent call last):
      File "/tmp/ansible_sh16ejbd/ansible_module_authorized_key.py", line 496, in <module>
        main()
      File "/tmp/ansible_sh16ejbd/ansible_module_authorized_key.py", line 490, in main
        results = enforce_state(module, module.params)
      File "/tmp/ansible_sh16ejbd/ansible_module_authorized_key.py", line 410, in enforce_state
        parsed_new_key = parsekey(module, new_key)
      File "/tmp/ansible_sh16ejbd/ansible_module_authorized_key.py", line 308, in parsekey
        options = parseoptions(module, options)
      File "/tmp/ansible_sh16ejbd/ansible_module_authorized_key.py", line 259, in parseoptions
        options_dict[key] = value
      File "/tmp/ansible_sh16ejbd/ansible_module_authorized_key.py", line 164, in __setitem__
        self.itemlist.append(key)
    AttributeError: 'dict_keys' object has no attribute 'append'

Yet another fix for https://github.com/ansible/ansible/pull/18053
9 years ago
..
__init__.py package files 11 years ago
authorized_key.py Fix code for python 3 9 years ago
cron.py Move job parameter to meet expected requirements (#5151) 9 years ago
group.py Bulk spelling improvement to modules-core (#5225) 9 years ago
hostname.py hostname: Support "Scientific Linux CERN" (#4855) 9 years ago
mount.py Fixing bind mount pattern in the mount module (#5084) 9 years ago
ping.py Port to dual python2/python3 compat 10 years ago
seboolean.py Convert name to bytes to compare it to bools 9 years ago
selinux.py Proper author info for all remaining modules 11 years ago
service.py Bulk spelling improvement to modules-core (#5225) 9 years ago
setup.py add gather_timeout parameter (#4093) 10 years ago
sysctl.py Showing some of the sysctl settings in proper yaml format per Ansible documentation (#4073) 10 years ago
systemd.py Bulk spelling improvement to modules-core (#5225) 9 years ago
user.py Bulk spelling improvement to modules-core (#5225) 9 years ago