Skip to content

Commit

Permalink
Exclude rancher desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Halsey committed Sep 26, 2022
1 parent 0bb6742 commit f17cc8f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wsl2-dns-agent"
version = "0.3.2"
version = "0.3.3"
edition = "2021"
license = "GPL-3.0"
description = "An agent that automatically patches your WSL2 DNS configuration for users of Cisco AnyConnect (or similar VPNs)"
Expand Down
7 changes: 6 additions & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ use std::collections::HashMap;
use std::fs;
use std::path::PathBuf;

const EXCLUDE_BY_DEFAULT: &[&str] = &["docker-desktop", "docker-desktop-data"];
const EXCLUDE_BY_DEFAULT: &[&str] = &[
"docker-desktop",
"docker-desktop-data",
"rancher-desktop",
"rancher-desktop-data",
];

#[derive(Debug, Deserialize, Serialize)]
pub struct Config {
Expand Down

0 comments on commit f17cc8f

Please sign in to comment.