We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ec18a4 commit 170b285Copy full SHA for 170b285
.github/workflows/release.yml
@@ -27,4 +27,4 @@ jobs:
27
goversion: "https://dl.google.com/go/go1.21.3.linux-amd64.tar.gz"
28
project_path: "."
29
binary_name: "swiftwave-dns"
30
- extra_files: swiftwave-dns.service install.sh
+ extra_files: swiftwave-dns.service install.sh disable_systemd_resolve.sh enable_systemd_resolve.sh
disable_systemd_resolve.sh
@@ -0,0 +1,5 @@
1
+# !/bin/env sh
2
+
3
+sudo systemctl stop systemd-resolved
4
+sudo systemctl disable systemd-resolved
5
+sudo systemctl mask systemd-resolved
enable_systemd_resolve.sh
+sudo systemctl start systemd-resolved
+sudo systemctl enabled systemd-resolved
+sudo systemctl unmask systemd-resolved
0 commit comments