1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/file
Maxime de Roucy c2ac9d0831 fix file attributes changed detection
https://docs.python.org/2/library/stdtypes.html#str.split
str.split([sep[, maxsplit]])
If sep is given, consecutive delimiters are not grouped together and are deemed
to delimit empty strings.

>>> "85563      ----------------C-- /var/lib/libvirt/images".split(' ')[0:2]
['85563', '']
>>> "85563      ----------------C-- /var/lib/libvirt/images".split()[0:2]
['85563', '----------------C--']
2017-12-15 09:48:18 -08:00
..
files Migrate Linux CI roles to test targets. (#17997) 2016-10-13 09:09:25 -07:00
meta Fix cosmetic problems in YAML source 2016-11-11 14:50:57 -08:00
tasks fix file attributes changed detection 2017-12-15 09:48:18 -08:00
aliases Add missing needs/root alias to file test. (#22800) 2017-03-20 14:11:16 -07:00