From 6750a866c68ae62a80f5075df6e8bdd581415808 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Thu, 13 Apr 2023 09:57:26 +0200 Subject: [PATCH] [PR #6316/42bc2cb4 backport][stable-6] fix small typo (#6333) fix small typo (#6316) fix small typo toch -> touch (cherry picked from commit 42bc2cb4d8a61b9f4f501cd45017101f743c858c) Co-authored-by: Sharuzzaman Ahmat Raslan --- plugins/modules/modprobe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/modprobe.py b/plugins/modules/modprobe.py index 1cfdc3700b..6389d758d2 100644 --- a/plugins/modules/modprobe.py +++ b/plugins/modules/modprobe.py @@ -52,7 +52,7 @@ options: - If C(present), adds module name to C(/etc/modules-load.d/) and params to C(/etc/modprobe.d/) so the module will be loaded on next reboot. - If C(absent), will comment out module name from C(/etc/modules-load.d/) and comment out params from C(/etc/modprobe.d/) so the module will not be loaded on next reboot. - - If C(disabled), will not toch anything and leave C(/etc/modules-load.d/) and C(/etc/modprobe.d/) as it is. + - If C(disabled), will not touch anything and leave C(/etc/modules-load.d/) and C(/etc/modprobe.d/) as it is. - Note that it is usually a better idea to rely on the automatic module loading by PCI IDs, USB IDs, DMI IDs or similar triggers encoded in the kernel modules themselves instead of configuration like this. - In fact, most modern kernel modules are prepared for automatic loading already.