I hereby claim:
- I am teh-random-name on github.
- I am shortcord (https://keybase.io/shortcord) on keybase.
- I have a public key whose fingerprint is E9AC 78F4 163A E6EF 3D50 BCD4 0E6F 6A4F 050B F91E
To claim this, I am signing this object:
# Mount the storage or CD to a USB disk | |
cd ./storage | |
# Create the VM to import to | |
# we are assuming id of 1100 | |
VMID=1100 | |
qm create "${VMID}" \ | |
--name "Imported VM" \ | |
--memory 1024 \ | |
--cores 4 |
#!/usr/bin/env bash | |
# Built for CloudSouth.com | |
# This script wipes disk partition tables via wipefs(8) and reports Wearout via smartctl(8). | |
# Mainly built for SSDs, hence the Wearout reporting. | |
# Currently Supports Intel, Kingston, and Micron | |
# If you wish to add support for a disk that isn't listed | |
# run smartctl -A /dev/disk/sdx, where sdx is the disk you want to add. | |
# Look for the attribute that is for reporting disk wear, this differs per manufacturer and not every disk reports wear. | |
# Add that attribute in the egrep command where the "wear" variable is being assiged. |
#!/bin/sh | |
dig -x $(dig +short ${1}); |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
#shellcheck disable=2155 | |
# Cronic v3 Edited - cron job report wrapper | |
# Copyright 2007-2016 Chuck Houpt. No rights reserved, whatsoever. | |
# Public Domain CC0: http://creativecommons.org/publicdomain/zero/1.0/\ | |
# Source: https://habilis.net/cronic/ | |
function exitTrap { | |
## Short out if $TMP is root for some reason |