-
Notifications
You must be signed in to change notification settings - Fork 0
Fix systemd-networkd configuration file paths in documentation #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix systemd-networkd configuration file paths in documentation #8
Conversation
Co-authored-by: danielbodnar <1790726+danielbodnar@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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: |
Copilot
AI
Jan 11, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.