Skip to content
Closed
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
8 changes: 4 additions & 4 deletions STACK.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ HelloTimeSec=2
MaxAgeSec=20
```

#### 📄 /usr/lib/systemd/system/10-tenant-bridge.network:
#### 📄 /usr/lib/systemd/network/10-tenant-bridge.network:
Copy link

Copilot AI Jan 11, 2026

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 uses AI. Check for mistakes.
```ini
[Match]
Name=br-tenant-%i
Expand Down Expand Up @@ -326,7 +326,7 @@ Endpoint=${PEER_ENDPOINT}:51820
PersistentKeepalive=25
```

#### 📄 /usr/lib/systemd/system/20-wg-tenant.network:
#### 📄 /usr/lib/systemd/network/20-wg-tenant.network:
```ini
[Match]
Name=wg-tenant-%i
Expand Down Expand Up @@ -354,7 +354,7 @@ DestinationPort=4789
MacLearning=yes
```

#### 📄 /usr/lib/systemd/system/30-vxlan-tenant.network:
#### 📄 /usr/lib/systemd/network/30-vxlan-tenant.network:
```ini
[Match]
Name=vxlan-tenant-%i
Expand All @@ -379,7 +379,7 @@ Kind=vlan
Id=%i
```

#### 📄 /usr/lib/systemd/system/40-vlan-tenant.network:
#### 📄 /usr/lib/systemd/network/40-vlan-tenant.network:
```ini
[Match]
Name=vlan-tenant-%i
Expand Down