Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The plugin manages most sleep configuration options.
2. Add this line:

```
/sbin/ethtool -s eth0 wol g
/usr/sbin/ethtool -s eth0 wol g
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Find all translation files with the outdated ethtool path

# Search for the old path in translation directories
rg -n '/sbin/ethtool' --glob 'i18n/**/wake-on-lan.mdx'

Repository: unraid/docs

Length of output: 770


Update the ethtool path in translated WoL docs (multiple locales).

Source docs/unraid-os/system-administration/advanced-tools/wake-on-lan.mdx uses /usr/sbin/ethtool, but the wake-on-lan.mdx translations still reference /sbin/ethtool in: i18n/de/..., i18n/fr/..., i18n/es/..., i18n/ja/..., and i18n/zh/..., which will break the copied command for those users.

Expected fix for German
-  /sbin/ethtool -s eth0 wol g
+  /usr/sbin/ethtool -s eth0 wol g
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@docs/unraid-os/system-administration/advanced-tools/wake-on-lan.mdx` at line
90, Update the translated wake-on-lan documents to match the source command
path: replace instances of "/sbin/ethtool" with "/usr/sbin/ethtool" in each
locale copy of wake-on-lan.mdx (e.g., the files under i18n/de/, i18n/fr/,
i18n/es/, i18n/ja/, i18n/zh/). Search for the literal string "/sbin/ethtool -s"
or "/sbin/ethtool" in those translation files and update them to
"/usr/sbin/ethtool -s" so the examples match the source docs.

```
:::

Expand Down