Skip to content

Commit

Permalink
Merge pull request #34404 from github/repo-sync
Browse files Browse the repository at this point in the history
Repo sync
  • Loading branch information
docs-bot authored Aug 26, 2024
2 parents 68fa856 + 34cc5a6 commit 99700de
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 0 deletions.
4 changes: 4 additions & 0 deletions data/release-notes/enterprise-server/3-11/14.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,7 @@ sections:
When restoring from a backup snapshot, a large number of `mapper_parsing_exception` errors may be displayed.
- |
Services may respond with a `503` status due to an out of date `haproxy` configuration. This can usually be resolved with a `ghe-config-apply` run.
- |
{% data reusables.release-notes.2024-08-resolvconf-wont-start %}
[Updated: 2024-08-26]
4 changes: 4 additions & 0 deletions data/release-notes/enterprise-server/3-12/8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,7 @@ sections:
When restoring from a backup snapshot, a large number of `mapper_parsing_exception` errors may be displayed.
- |
Services may respond with a `503` status due to an out of date `haproxy` configuration. This can usually be resolved with a `ghe-config-apply` run.
- |
{% data reusables.release-notes.2024-08-resolvconf-wont-start %}
[Updated: 2024-08-26]
4 changes: 4 additions & 0 deletions data/release-notes/enterprise-server/3-13/3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,7 @@ sections:
Services may respond with a `503` status due to an out of date `haproxy` configuration. This can usually be resolved with a `ghe-config-apply` run.
- |
Instance setup in AWS with IMDSv2 enforced fails if no public IP is present.
- |
{% data reusables.release-notes.2024-08-resolvconf-wont-start %}
[Updated: 2024-08-26]
Binary file not shown.
16 changes: 16 additions & 0 deletions data/reusables/release-notes/2024-08-resolvconf-wont-start.md
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
```

1 comment on commit 99700de

@Slawek120

This comment was marked as spam.

Please sign in to comment.