Skip to content

Instantly share code, notes, and snippets.

View nshores's full-sized avatar
🏠
Working from home

Nick Shores nshores

🏠
Working from home
View GitHub Profile
@nshores
nshores / azurerm_netapp_volume_debug
Created March 1, 2021 17:10
azurerm_netapp_volume_debug
(and 3 more similar warnings elsewhere)
Error: rpc error: code = Unavailable desc = transport is closing
Error: rpc error: code = Unavailable desc = transport is closing
@nshores
nshores / ansible-resize-lvm.sh
Created February 2, 2021 05:19
ansible-resize-lvm.sh
ansible -i /mnt/c/Users/nshores/Documents/repos/shoreslab/ansible/hosts.nshores swarm_nodes -m shell -a '/bin/bash -c " \
(echo n; echo ""; echo ""; echo ""; echo w) | sudo fdisk /dev/sda && \
sudo pvcreate /dev/sda4 && \
sudo vgextend ubuntu-vg /dev/sda4 && \
sudo lvextend -l +100%FREE /dev/mapper/ubuntu--vg-ubuntu--lv && \
sudo resize2fs /dev/ubuntu-vg/ubuntu-lv"'
@nshores
nshores / check_snmp_rev.yml
Last active November 30, 2020 18:35
check_snmp_rev.yml
---
- hosts: test
become: yes
#Is sudo actually needed? Only use it when needed.
become_method: sudo
#Use variables whenever possible. You can place them in the task, or in a outside file at the inventory level.
vars:
snmp_path: "/etc/snmp/snmpd_conf/snmpd.conf"
backup_path: "/etc/snmp/snmpd_conf/snmpd.conf.bak"
tasks:
@nshores
nshores / check_patio_monitor.sh
Created July 27, 2020 22:23
check_patio_monitor.sh
#!/bin/sh
if pgrep -f "python3 patio_light_notify.py"; then
pid=$(pidof python3 patio_light_notify.py)
echo "pid of patio_light_notify:" $pid
echo "it is already running"
exit
else
echo "starting patio notify script"
cd /home/zoneminder/
@nshores
nshores / check_zm_alarm.py
Last active July 27, 2020 20:51
check_zm_alarm.py
import pyzm.ZMMemory as zmmemory
import requests
import time
#set monitor id
mid = 6
#HA Url
ha_webhook = 'http://slim-dev.local:8123/api/webhook/patio'
@nshores
nshores / rgb_patio_lights.yaml
Created July 27, 2020 00:32
rgb_patio_lights
- alias: Turn on patio lights when motion detected by camera
trigger:
platform: state
entity_id: camera.backyard
to: 'recording'
condition:
- condition: state
entity_id: sun.sun
state: 'below_horizon'
action:
@nshores
nshores / ios_changes.yaml
Created July 17, 2020 01:16
ios_changes.yaml
#Playbook to backup configurations from IOS Devices, then apply a set of changes.
#Nick Shores 1-9-2017 - Created for Roebbelen Network
---
- hosts: roebbelen
gather_facts: no
connection: local
vars:
@nshores
nshores / upgrade_esxi_vib.yaml
Last active November 11, 2020 00:40
upgrade_esxi_vib.yaml
---
- hosts: dunn-esxi:!*dc-esxihost-01*
vars:
#Set the source VIB file to copy, Source Location, and Destination Location
src_vib: NVIDIA-VMware-450.55-1OEM.670.0.0.8169922.x86_64.vib
src_location: ~/Downloads/NVIDIA-GRID-vSphere-6.7-450.55-450.51.05-451.48/
dest_location: /tmp/
tasks:
@nshores
nshores / reboot_az_server.ps1
Last active July 7, 2020 18:33
reboot_az_server_runbook
$connectionname = "AzureRunAsConnection"
try
{
$servicePrincipalConnection=Get-Automationconnection -Name $connectionname
Login-AzAccount -servicePrincipal -TenantId $servicePrincipalConnection.TenantId -applicationId $servicePrincipalConnection.applicationId -certificateThumbprint $servicePrincipalConnection.certificatethumbprint
}
catch{
if (!$serviceprincipalconnection)
{
$ErrorMessage = "Connection $connectionName not found."
@nshores
nshores / failover_dns.ps1
Last active April 20, 2020 20:10
failover dns
#run on med7 dc (local)
$zonename = "healthcare.local"
$ip_table = @{
M7FS = "10.1.100.30";
M7KDM = "10.1.100.7";
M7DTS = "10.1.100.6";
M7KESM = "10.1.100.8";
TS2 = "10.1.100.37";
M7APP = "10.1.100.5";