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
Toshio Kuratomi d77027f495 Fix authorized_key module to preserve the order of options
The last fix allowing multiple definitions of the same option key (for
permitopen support) introduced a set() which removed the guaranteed
ordering of the options.

This change restores ordering.  The change is larger than simply
removing the set because we do need to handle the non-dict semantics
around keys not being unique in the data structure.  The new code make
use of __setitem__() and items() to do its work.  Trying to use
getitem() or keys() should be looked upon with suspicion as neither of
those follow dictionary semantics and it is quite possible the coder
doesn't realize this.  The next time we need to touch or enhance the
keydict code it should probably be rewritten to not pretend to extend
the dictionary interface.
9 years ago
..
__init__.py package files 11 years ago
authorized_key.py Fix authorized_key module to preserve the order of options 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