Skip to content

Instantly share code, notes, and snippets.

@crpb
crpb / diskspd.ps1
Last active May 11, 2024 18:50
DiskSpd auto download with drive and core cound selection
$DiskSpd = "$PSScriptRoot\DiskSpd\$($Env:PROCESSOR_ARCHITECTURE.ToLower())\diskspd.exe"
if ( -Not ( Test-Path $DiskSpd ) ) {
# Destination will be the directory of the script + 'DiskSpd'
$destdir = "$PSScriptRoot"
$tempdir = "C:\tmp"
New-Item -Type Directory -Path $tempdir -ErrorAction Stop
$file = "DiskSpd.ZIP"
$tempfile = Join-Path -Path "$tempdir" -ChildPath "$file"
Set-Location -Path $tempdir
$repo = "microsoft/diskspd"
@crpb
crpb / tmux-midclt
Last active June 6, 2023 04:26
helper to lookup some truenas midclt calls on the fly / also works w/o tmux / fzf required!
#!/usr/bin/env bash
# v=0.5 2023-06-06
# ~cb
#
# # TMUX
# cat << EOTMUX >> ~/.tmux.conf
# # TrueNAS MIDCLT-QUERYs
# bind-key C-t popup -E tmux-midclt
# EOTMUX
@crpb
crpb / zfsinst.sh
Last active September 10, 2022 12:42
minimal debian installation with zfs / one or two disks.. haven't tried with two disks yet.. attention, this script will destroy your data without any question :-)
#!/bin/sh
modprobe zfs || exit
apt-get update
apt-get install ntpdate jq --yes
ntpdate-debian
#zpool export -f bpool
#zpool export -f rpool
#swapoff --all
#mount |awk '/\/mnt/ {print $3}'|xargs -n 1 umount 2>/dev/null
@crpb
crpb / syncoid_cleanup.sh
Last active February 24, 2023 06:01
little script to keep the snapshot-count in check for my truenas. "frequently" went above ~10k as i replicate every hour. syncoid_cleanup.sh
#!/bin/sh
ROOT="p0/bak/home"
frequently=4
hourly=36
daily=30
monthly=3
_remove_old_snaps() {
COUNT=$(echo "{$1}" |wc -l)
#echo "COUNT: ${COUNT}"
if [ "$COUNT" -gt "$2" ]
## vim: filetype=sh
# FARBSPIELE #
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
function red { printf "${RED}$@${NC}\n" ; }
function green { printf "${GREEN}$@${NC}\n" ; }
@crpb
crpb / gen_hosts_yml.sh
Created May 21, 2022 04:44
ansible hosts.yaml generated from ssh_config files
#!/usr/bin/env bash
# Generate hosts.yaml from ssh_config-Includes
# Filename-Pattern "NNN_customer.ssh"
SRC="$HOME/git/ssh_config/*.ssh"
printf "all:\n children:\n"
for CONF in ${SRC}; do
BASE=$(basename "${CONF}")
GROUP=${BASE:4:-4}
HOSTS=$(awk '/^Host / {print $2}' "${CONF}"|sort|uniq)
printf ' %s:\n hosts:\n' "${GROUP}"
/*
* This combined file was created by the DataTables downloader builder:
* https://datatables.net/download
*
* To rebuild or modify this file with the latest versions of the included
* software please visit:
* https://datatables.net/download/#dt/dt-1.11.3/af-2.3.7
*
* Included libraries:
* DataTables 1.11.3, AutoFill 2.3.7
@crpb
crpb / fluxbox-apps-helper.sh
Last active April 9, 2022 01:26
Fluxbox Apps xprop shell-function to create an ~/.fluxbox/apps entry
#Fluxbox-Helper
fbxprop(){
echo -n "[app] "
xprop WM_CLASS WM_NAME WM_WINDOW_ROLE | sed 's/WM_\(.*\)(\(.*\)) = "//g;s/", "/\n/;s/"$//'| sed '1 s/^/(name=/;2 s/^/(class=/;3 s/^/(title=/;4 s/^/(role=/;s/$/)/g' | grep -v WM_WINDOW_ROLE |tr '\n' ' '
echo
echo "[end]"
}
@crpb
crpb / Firefox-Pre-Task.ps1
Last active May 18, 2023 21:46
PDQ Deploy Firefox Auto-Download Package automatically in your own Language via a Pre-Task.
# Set the Version in which the Script is pasted.
#$ff_release = "Firefox"
$ff_release = "Firefox-ESR"
#For what purpose was this all?
$ff_lang = "de"
# Universal separator \o/
$sep = [IO.Path]::DirectorySeparatorChar
# 2023.05
# https://help.pdq.com/hc/en-us/articles/5719272144667-PDQ-Package-Library-Changelog
# PDQ changed their Auto-Download folder and filename schema
@crpb
crpb / CheckMK_Local_Mailstore.py
Last active October 2, 2022 21:37
CheckMK Local-Check Mailstore Licenses Version Profiles
#!/usr/bin/python3
import os
import configparser
import sys
from mailstore.mgmt import ServerClient as ms_api
import requests
from datetime import datetime, timedelta
# Config-File