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 / frigate_config.yml
Created June 16, 2021 05:32
frigate_config.yml
mqtt:
host: tasks.hivemq-broker
cameras:
front_door:
ffmpeg:
inputs:
- path: rtsp://admin:4118nick@192.168.99.148:554/live
roles:
- detect
- rtmp
@nshores
nshores / az_update_vm_disk.ps1
Created April 27, 2021 21:18
update vm disks in azure
#select sub
Select-AzSubscription -Subscription 95a20cd8-ca92-4b1e-9d7a-f9ca650b8811
# Name of the resource group that contains the VM
$rgName = 'AMS-prd'
# Choose between Standard_LRS, StandardSSD_LRS and Premium_LRS based on your scenario
$storageType = 'Premium_LRS'
@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 / cloudSettings
Last active January 4, 2021 23:00
Visual Studio Code Settings Sync Gist
{"lastUpload":"2021-01-04T23:00:09.140Z","extensionVersion":"v3.4.3"}
@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 / 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 / get_ad_Group.ps1
Created May 31, 2019 18:41
get_ad_Group.ps1
$Groups = (Get-AdGroup -filter * | Where {$_.name -like "**"} | select name -ExpandProperty name)
$Table = @()
$Record = @{
"Group Name" = ""
"Name" = ""
"Username" = ""
}
@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'