Skip to content

Instantly share code, notes, and snippets.

View RobertDeRose's full-sized avatar

Robert DeRose RobertDeRose

  • Checkpoint Systems
  • Thorofare, New Jersey
View GitHub Profile
@RobertDeRose
RobertDeRose / gist:babf9d1f0a586e20b195d7724bbe6f76
Created October 10, 2019 21:11
Vagran Up Hyper-V Windows 10 (1903) 64-bit
vagrant up --debug INFO global: Vagrant version: 2.2.5
INFO global: Ruby version: 2.4.6
INFO global: RubyGems version: 2.6.14.4
INFO global: VAGRANT_EXECUTABLE="C:\\HashiCorp\\Vagrant\\embedded\\gems\\2.2.5\\gems\\vagrant-2.2.5\\bin\\vagrant"
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="C:\\HashiCorp\\Vagrant\\embedded"
INFO global: VAGRANT_INSTALLER_ENV="1"
INFO global: VAGRANT_INSTALLER_VERSION="2"
INFO global: VAGRANT_LOG="debug"
WARN global: resolv replacement has not been enabled!
DEBUG global: Loading core plugin: C:/HashiCorp/Vagrant/embedded/gems/2.2.5/gems/vagrant-2.2.5/plugins/commands/box/plugin.rb
@RobertDeRose
RobertDeRose / unrarer.sh
Last active November 18, 2022 10:04
Transmission unrar script to handle Sonarr from prematurely moving files
#!/bin/bash
# The script could use more tesing, but it works well for my needs
function extract_rar() {
isRar=$(ls | grep *.rar)
if [ -n "$isRar" ]; then
# Handle an edge case with some distributors
isPart01="$(ls *.rar | egrep -i 'part01.rar|part1.rar')"
if [ -n "$isPart01" ]; then