diff --git a/scripts/guru-shell b/scripts/guru-shell deleted file mode 100755 index 95ecf82..0000000 --- a/scripts/guru-shell +++ /dev/null @@ -1,58 +0,0 @@ -#! /bin/bash -set -e - -# If //qs does not exist -if [ ! -d "//qs" ]; then - echo "This command must be executed on a studio machine!" - return 1 -fi - -# Figure out the appropriate prefix -if [ $(uname -o | grep -c Msys) -gt 0 ]; then - s_drive="S:/" - pathsep=";" -else - s_drive="//qs/resources" - pathsep=":" -fi - -# Ask if we want to use the development env -echo -n "Do you want to use the development environment? (Y/n)" -read dev_env -if [ "$dev_env" == "n" ]; then - studio2023_path="studio/studio2023" - ps1_mode="" -else - studio2023_path="development/epratten/studio2023" - ps1_mode="-dev" -fi - -# Ask if we want to force debugging for all processes -echo -n "Do you want to force debugging for all processes? (y/N)" -read force_debug -if [ "$force_debug" == "y" ]; then - export GURU_DEBUG=10 -fi - -# Set PYTHONPATH based on the data we learned -export GURU_PYTHON_ROOT="$s_drive/$studio2023_path" -export PYTHONPATH="$GURU_PYTHON_ROOT/env$pathsep$PYTHONPATH" -export PYTHONPATH="$GURU_PYTHON_ROOT$pathsep$PYTHONPATH" - -# Remove anything from PYTHONPATH that contains Maya_Shared. -export PYTHONPATH=$(echo $PYTHONPATH | sed "s/[^$pathsep]*Maya_Shared[^$pathsep]*//g" | sed "s/$pathsep$pathsep/$pathsep/g" | sed "s/^$pathsep//g" | sed "s/$pathsep$//g") - -# Update the PATH to point to the studio's install of python -if [ -d "/c/Programs/software/win/core/python/python_3.7.7" ]; then - export PATH="/c/Programs/software/win/core/python/python_3.7.7:$PATH" -fi - -# Add the common cli scripts path to $PATH -export PATH="//qs/resources/$studio2023_path/common/util/cli:$PATH" - -# Configure the prompt -export PS1_CTX="guru$ps1_mode bash" - -# Finally, start bash -export EWP_IN_GURU_ENVIRONMENT=1 -bash \ No newline at end of file diff --git a/scripts/guru-sophos-password b/scripts/guru-sophos-password deleted file mode 100755 index 598c0d9..0000000 --- a/scripts/guru-sophos-password +++ /dev/null @@ -1,7 +0,0 @@ -#! /bin/bash -set -e - -BASE_PW=$(op read "op://t4auhpfxnrrtyvfml4kysvgb2i/rqinfxfqr7z5e2gmix6beiqcxy/password") -OTP=$(op read "op://t4auhpfxnrrtyvfml4kysvgb2i/rqinfxfqr7z5e2gmix6beiqcxy/one-time password?attribute=otp") - -echo ${BASE_PW}${OTP} \ No newline at end of file diff --git a/scripts/guru-vpn b/scripts/guru-vpn deleted file mode 100755 index 5e772cc..0000000 --- a/scripts/guru-vpn +++ /dev/null @@ -1,37 +0,0 @@ -#! /bin/bash -set -e - -# Require 1 argument (connect or disconnect) -if [ -z "$1" ]; then - echo "Usage: guru-vpn " - exit 1 -fi - -# If we are told to disconnect -if [ "$1" == "disconnect" ]; then - echo "Disconnecting..." - nmcli connection down "Guru VPN" - exit 0 -fi - -# If we are told to connect -if [ "$1" == "connect" ]; then - # Attempt to disconnect, just in case we are on a stale connection - echo "Attempting to leave stale connection if it exists" - nmcli connection down "Guru VPN" | true - - # Generate the password - echo "Constructing one-time password" - vpn_pass=$(guru-sophos-password) - - # Connect - echo "Connecting..." - nmcli connection modify "Guru VPN" vpn.secrets "password=${vpn_pass}" - nmcli connection up "Guru VPN" - - exit 0 -fi - -# If we are here, we were given an invalid command -echo "Usage: guru-vpn " -exit 1 \ No newline at end of file