Skip to content

Instantly share code, notes, and snippets.

View MattCurryCom's full-sized avatar

Matt Curry MattCurryCom

View GitHub Profile
@duboisf
duboisf / README.md
Last active September 6, 2024 17:19
zscaler apparmor profiles for Pop!_OS 22.04 LTS

To install zscaler on Pop!_OS 22.04, download the connector from the admin zscaler site by clicking the Client Connector link on the sidebar, then clicking Client Connector App Store, New Releases, Linux and download 1.4.0.105.

Before installing, you must temporarily replace your /etc/os-release file:

cd /etc
sudo mv os-release os-release.old
sudo cat <<EOF >> os-release
PRETTY_NAME="Ubuntu 22.04.2 LTS"
NAME="Ubuntu"
@tannernewell
tannernewell / uninstall-rippling.sh
Last active August 13, 2021 21:48 — forked from JulianNorton/uninstall-rippling.sh
uninstall rippling
#!/bin/bash
sudo launchctl unload /Library/LaunchDaemons/com.rippling.*
sudo rm -rf /Library/LaunchDaemons/com.rippling.*
sudo rm -rf /opt/rippling
sudo defaults write /Library/Preferences/com.apple.loginwindow LoginwindowText ""
sudo profiles -R -p com.rippling.password
sudo launchctl unload /Library/LaunchDaemons/com.googlecode.munki.*
sudo rm -rf '/Applications/Utilities/Managed Software Update.app'
provider "aws" {
version = "~> 2.0"
region = "eu-west-2"
}
# Providing a reference to our default VPC
resource "aws_default_vpc" "default_vpc" {
}
# Providing a reference to our default subnets
@JulianNorton
JulianNorton / uninstall-rippling.sh
Created August 13, 2018 22:31
uninstall rippling
#!/bin/bash
if [ `id -u` -ne 0 ]; then
echo "Rippling uninstall must be run by root"
exit 1
fi
sudo launchctl unload /Library/LaunchDaemons/com.rippling.*
sudo rm -rf /Library/LaunchDaemons/com.rippling.*
sudo rm -rf /opt/rippling