Skip to content

Commit f17cc8f

Browse files
author
Jacob Halsey
committed
Exclude rancher desktop
1 parent 0bb6742 commit f17cc8f

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wsl2-dns-agent"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
edition = "2021"
55
license = "GPL-3.0"
66
description = "An agent that automatically patches your WSL2 DNS configuration for users of Cisco AnyConnect (or similar VPNs)"

src/config.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ use std::collections::HashMap;
44
use std::fs;
55
use std::path::PathBuf;
66

7-
const EXCLUDE_BY_DEFAULT: &[&str] = &["docker-desktop", "docker-desktop-data"];
7+
const EXCLUDE_BY_DEFAULT: &[&str] = &[
8+
"docker-desktop",
9+
"docker-desktop-data",
10+
"rancher-desktop",
11+
"rancher-desktop-data",
12+
];
813

914
#[derive(Debug, Deserialize, Serialize)]
1015
pub struct Config {

0 commit comments

Comments
 (0)