-
Notifications
You must be signed in to change notification settings - Fork 59.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34404 from github/repo-sync
Repo sync
- Loading branch information
Showing
5 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
16 changes: 16 additions & 0 deletions
16
data/reusables/release-notes/2024-08-resolvconf-wont-start.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
On boot, the `resolvconf` service may fail to start because the `/run/resolvconf` directory does not exist when the service attempts to `touch` a file there, with the error: | ||
|
||
```shell | ||
/bin/touch: cannot touch '/run/resolvconf/postponed-update': No such file or directory | ||
``` | ||
|
||
If this occurs, workaround this issue with the following commands — this change will persist on reboots, but not upgrades: | ||
|
||
```shell | ||
sudo sed -i.bak \ | ||
'/\[Service\]/a ExecStartPre\=\/bin\/mkdir \-p \/run\/resolvconf' \ | ||
/etc/systemd/system/resolvconf.service.d/local.conf | ||
|
||
sudo systemctl daemon-reload | ||
sudo systemctl start resolvconf | ||
``` |
This comment was marked as spam.
Sorry, something went wrong.