Fix systemd-networkd configuration file paths in documentation#8
Fix systemd-networkd configuration file paths in documentation#8Copilot wants to merge 2 commits intocopilot/fix-cef75252-0b61-4f39-977f-b9f896d82b67from
Conversation
Co-authored-by: danielbodnar <1790726+danielbodnar@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
This PR corrects systemd-networkd configuration file paths in the STACK.md documentation. The changes address an issue where .network configuration files were incorrectly documented as residing in /usr/lib/systemd/system/ instead of the correct /usr/lib/systemd/network/ directory. However, the fix is incomplete as it only addresses .network files while leaving .netdev files with the same incorrect path.
Changes:
- Updated four
.networkfile paths from/usr/lib/systemd/system/to/usr/lib/systemd/network/ - Corrected paths for:
10-tenant-bridge.network,20-wg-tenant.network,30-vxlan-tenant.network, and40-vlan-tenant.network
| ``` | ||
|
|
||
| #### 📄 /usr/lib/systemd/system/10-tenant-bridge.network: | ||
| #### 📄 /usr/lib/systemd/network/10-tenant-bridge.network: |
There was a problem hiding this comment.
While this .network file path has been correctly fixed, there are three .netdev files in this document (lines 312, 344, and 372) that still have the incorrect path /usr/lib/systemd/system/ instead of /usr/lib/systemd/network/. Both .netdev and .network files are systemd-networkd configuration files and should reside in the same /usr/lib/systemd/network/ directory, not in /usr/lib/systemd/system/ which is for systemd service unit files.
|
@copilot please run a new |
After reviewing the PR history, this PR can be closed. PR #11 ("Consolidate all PR changes into single branch") was merged into main on 2026-01-11 and includes a more comprehensive fix:
All changes from this branch have been superseded by the consolidated PR #11. |
Corrected systemd-networkd configuration file paths that were incorrectly documented as residing in
/usr/lib/systemd/system/instead of the correct/usr/lib/systemd/network/directory.Changes
.networkconfiguration files inSTACK.md:10-tenant-bridge.network20-wg-tenant.network30-vxlan-tenant.network40-vlan-tenant.networkBefore:
#### 📄 /usr/lib/systemd/system/40-vlan-tenant.network:After:
#### 📄 /usr/lib/systemd/network/40-vlan-tenant.network:Addresses feedback from #7.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.