From 5cd482353b9f4c5088b6527aced4ba1185b9cb6e Mon Sep 17 00:00:00 2001 From: bri <284789+b-@users.noreply.github.com> Date: Sat, 12 Jul 2025 14:32:17 -0400 Subject: [PATCH] modules/script: fix path in example comment (#421) We moved from /config to /files a long time ago. This fixes the comment in the example to say `/files/scripts` instead of `/config/scripts`. --- modules/script/module.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/script/module.yml b/modules/script/module.yml index dc298ec..7c72ed5 100644 --- a/modules/script/module.yml +++ b/modules/script/module.yml @@ -6,4 +6,4 @@ example: | - "curl https://example.com/examplebinary > /usr/bin/examplebinary" # example: download binary - "ln -sf /usr/bin/ld.bfd /etc/alternatives/ld && ln -sf /etc/alternatives/ld /usr/bin/ld" # example: ld alternatives symlink workaround scripts: - - myscript.sh # example: run config/scripts/myscript.sh + - myscript.sh # example: run files/scripts/myscript.sh