Felix Fontein
236b9c0e04
Sort imports with ruff check --fix ( #11400 )
...
Sort imports with ruff check --fix.
2026-01-09 07:40:58 +01:00
Alexei Znamensky
a9a4f89033
remove required=false from docs ( #11055 )
2025-11-09 08:27:06 +01:00
Alexei Znamensky
af246f8de3
modules s[f-z]*: use f-strings ( #10977 )
...
* modules s[f-z]*: use f-strings
* add changelog frag
2025-10-26 22:35:30 +13:00
Felix Fontein
8f8a0e1d7c
Fix __future__ imports, __metaclass__ = type, and remove explicit UTF-8 encoding statement for Python files ( #10886 )
...
* Adjust all __future__ imports:
for i in $(grep -REl "__future__.*absolute_import" plugins/ tests/); do
sed -e 's/from __future__ import .*/from __future__ import annotations/g' -i $i;
done
* Remove all UTF-8 encoding specifications for Python source files:
for i in $(grep -REl '[-][*]- coding: utf-8 -[*]-' plugins/ tests/); do
sed -e '/^# -\*- coding: utf-8 -\*-/d' -i $i;
done
* Remove __metaclass__ = type:
for i in $(grep -REl '__metaclass__ = type' plugins/ tests/); do
sed -e '/^__metaclass__ = type/d' -i $i;
done
2025-10-10 19:52:04 +02:00
Alexei Znamensky
3bb7a77b14
arg_spec adjustments: modules [o-s]* ( #10512 )
...
* arg_spec adjustments: modules [o-s]*
* add changelog frag
2025-07-31 22:46:32 +02:00
Alexei Znamensky
695b1abc8d
st*: style adjustments ( #9516 )
...
* st*: style adjustments
* lien lenght adjustments
2025-01-03 20:00:45 +01:00
Thomas Sjögren
482a90e8b4
add support for systemd creds encrypt/decrypt ( #9383 )
...
* add support for systemd creds encrypt/decrypt
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* add __metaclass__
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* Python 2.7 issues
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* update version_added and ci test aliases
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* switch to container
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* run tests in docker as well
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* move tasks into tasks/
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* no need to call echo
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* lint and add become:
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* dont append a newline
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* don't clean newlines
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* only use module name
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* clean
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* change msg to value
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* add return values
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* update attributes and description
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* Update plugins/modules/systemd_creds_decrypt.py
Co-authored-by: Felix Fontein <felix@fontein.de >
* set newline default
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* Update plugins/modules/systemd_creds_encrypt.py
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com >
* Update plugins/modules/systemd_creds_encrypt.py
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com >
* Update plugins/modules/systemd_creds_encrypt.py
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com >
* update required and spelling
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
* use single backslash
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
---------
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com >
Co-authored-by: Felix Fontein <felix@fontein.de >
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com >
2024-12-29 21:15:57 +01:00