From e4be87da13e1a45863fcf8d845bf8955f4b8c870 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Mon, 18 Nov 2019 04:38:59 -0800 Subject: [PATCH] Update and rename 100.homebrew-no-spyware.sh to 100.disable-spyware.sh --- .../skel/Library/bashrc.d/100.disable-spyware.sh | 14 ++++++++++++++ .../Library/bashrc.d/100.homebrew-no-spyware.sh | 1 - 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 custompkg/root/etc/skel/Library/bashrc.d/100.disable-spyware.sh delete mode 100644 custompkg/root/etc/skel/Library/bashrc.d/100.homebrew-no-spyware.sh diff --git a/custompkg/root/etc/skel/Library/bashrc.d/100.disable-spyware.sh b/custompkg/root/etc/skel/Library/bashrc.d/100.disable-spyware.sh new file mode 100644 index 0000000..8b24e93 --- /dev/null +++ b/custompkg/root/etc/skel/Library/bashrc.d/100.disable-spyware.sh @@ -0,0 +1,14 @@ +export DO_NOT_TRACK=1 + +# the rest + +export HOMEBREW_NO_ANALYTICS=1 +export GATSBY_TELEMETRY_DISABLED=1 +export STNOUPGRADE=1 +export DOTNET_CLI_TELEMETRY_OPTOUT=1 +export SAM_CLI_TELEMETRY=0 +export AZURE_CORE_COLLECT_TELEMETRY=0 + +if command -v gcloud >/dev/null 2>&1 >/dev/null ; then + gcloud config set disable_usage_reporting true >/dev/null 2>&1 +fi diff --git a/custompkg/root/etc/skel/Library/bashrc.d/100.homebrew-no-spyware.sh b/custompkg/root/etc/skel/Library/bashrc.d/100.homebrew-no-spyware.sh deleted file mode 100644 index 8602170..0000000 --- a/custompkg/root/etc/skel/Library/bashrc.d/100.homebrew-no-spyware.sh +++ /dev/null @@ -1 +0,0 @@ -export HOMEBREW_NO_ANALYTICS=1