mirror of
https://github.com/systemd/systemd
synced 2025-11-19 16:54:46 +01:00
Compare commits
2 Commits
b8490c9e51
...
02fea5b412
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
02fea5b412 | ||
|
|
f88f0271f8 |
3
.github/workflows/cifuzz.yml
vendored
3
.github/workflows/cifuzz.yml
vendored
@ -22,8 +22,7 @@ on:
|
|||||||
- main
|
- main
|
||||||
jobs:
|
jobs:
|
||||||
Fuzzing:
|
Fuzzing:
|
||||||
# FIXME: Figure out why 32-bit applications fail to run in docker on Ubuntu 24.04.
|
runs-on: ubuntu-24.04
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
if: github.repository == 'systemd/systemd'
|
if: github.repository == 'systemd/systemd'
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ matrix.sanitizer }}-${{ matrix.architecture }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ matrix.sanitizer }}-${{ matrix.architecture }}-${{ github.ref }}
|
||||||
|
|||||||
@ -64,11 +64,13 @@ monitor_check_rr() (
|
|||||||
)
|
)
|
||||||
|
|
||||||
restart_resolved() {
|
restart_resolved() {
|
||||||
|
systemctl stop systemd-resolved-monitor.socket systemd-resolved-varlink.socket
|
||||||
systemctl stop systemd-resolved.service
|
systemctl stop systemd-resolved.service
|
||||||
(! systemctl is-failed systemd-resolved.service)
|
(! systemctl is-failed systemd-resolved.service)
|
||||||
# Reset the restart counter since we call this method a bunch of times
|
# Reset the restart counter since we call this method a bunch of times
|
||||||
# and can occasionally hit the default rate limit
|
# and can occasionally hit the default rate limit
|
||||||
systemctl reset-failed systemd-resolved.service
|
systemctl reset-failed systemd-resolved.service
|
||||||
|
systemctl start systemd-resolved-monitor.socket systemd-resolved-varlink.socket
|
||||||
systemctl start systemd-resolved.service
|
systemctl start systemd-resolved.service
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -333,6 +335,7 @@ manual_testcase_02_mdns_llmnr() {
|
|||||||
} >/run/systemd/resolved.conf.d/90-mdns-llmnr.conf
|
} >/run/systemd/resolved.conf.d/90-mdns-llmnr.conf
|
||||||
restart_resolved
|
restart_resolved
|
||||||
# make sure networkd is not running.
|
# make sure networkd is not running.
|
||||||
|
systemctl stop systemd-networkd.socket systemd-networkd-varlink.socket
|
||||||
systemctl stop systemd-networkd.service
|
systemctl stop systemd-networkd.service
|
||||||
assert_in 'no' "$(resolvectl mdns hoge)"
|
assert_in 'no' "$(resolvectl mdns hoge)"
|
||||||
assert_in 'no' "$(resolvectl llmnr hoge)"
|
assert_in 'no' "$(resolvectl llmnr hoge)"
|
||||||
@ -1367,7 +1370,9 @@ testcase_15_wait_online_dns() {
|
|||||||
resolvectl domain dns0 ""
|
resolvectl domain dns0 ""
|
||||||
|
|
||||||
# Stop systemd-resolved before calling systemd-networkd-wait-online. It should retry connections.
|
# Stop systemd-resolved before calling systemd-networkd-wait-online. It should retry connections.
|
||||||
|
systemctl stop systemd-resolved-monitor.socket systemd-resolved-varlink.socket
|
||||||
systemctl stop systemd-resolved.service
|
systemctl stop systemd-resolved.service
|
||||||
|
systemctl start systemd-resolved-monitor.socket systemd-resolved-varlink.socket
|
||||||
|
|
||||||
# Begin systemd-networkd-wait-online --dns
|
# Begin systemd-networkd-wait-online --dns
|
||||||
systemd-run -u "$unit" -p "Environment=SYSTEMD_LOG_LEVEL=debug" -p "Environment=SYSTEMD_LOG_TARGET=journal" --service-type=exec \
|
systemd-run -u "$unit" -p "Environment=SYSTEMD_LOG_LEVEL=debug" -p "Environment=SYSTEMD_LOG_TARGET=journal" --service-type=exec \
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user