Skip to content

Instantly share code, notes, and snippets.

# /etc/network/interfaces
#
auto lo
iface lo inet loopback
# device: eth0
iface eth0 inet manual
# IPv4 bridge
# (connect ONLY your firewall/router KVM instance here, this is the WAN device!)
@dsieborger
dsieborger / download-zd-config.sh
Created April 9, 2015 18:21
Download binary config file from Ruckus ZoneDirector
#!/bin/sh
# Download the binary config file from a Ruckus ZoneDirector.
#
# Tested with 9.8.2 on a ZD5000. May well need to be adjusted for other
# versions.
USERNAME=xxx
PASSWORD=xxx
ZDURL=https://zonedirector.example
COOKIES=cookies.txt # will be overwritten if it exists
@hannesbe
hannesbe / update-netbox.sh
Last active March 10, 2018 01:23
Update Netbox
#!/bin/bash
#
# Update script for Nextbox on CentOS 7
# Releases on https://github.com/digitalocean/netbox/releases
#
# Example usage:
# NETBOX_RELEASE=2.2.6 ./update-netbox.sh
cd /opt
@maldonadojuan
maldonadojuan / netboxInstall.sh
Created November 15, 2017 15:42
NetBoxInstallonUbuntu1604
###NetBox Install###
#update repos
sudo apt-get update
#install postgresql
sudo apt-get install -y postgresql libpq-dev
#go into sql with user postgres
sudo -u postgres psql
#!/bin/bash
#
# This script is used to setup netbox on a server running CentOS.
# Details at http://www.opentechshed.com/deploying-netbox-digital-ocean
#
### User Modifiable Variables ###
LOGFILE="/tmp/netbox-install.log"
PGCONF="/var/lib/pgsql/10/data/pg_hba.conf"
DBPASS=`date +%s | sha256sum | base64 | head -c 32`
NBADMIN='admin'
# This is the entire preseed config file used on an example Lucid system. See the preseed
# documentation for more information on the options here. This will use US English by default.
#
# https://help.ubuntu.com/10.04/installation-guide/amd64/preseed-contents.html
#
# This preseed will automatically install Ubuntu 10.04 with default options. Understand what
# it is doing before you use it.
#
# Boot Options line:
#
import shutil
import sys
import glob
import os
# Reorganizing chia plot on disk to free disk
# example python diskweap.py /media/plot1
# will check moving all finish plot from disk6 to 1, 5 to 1, 4 to 1, 3 to 1, 2 to 1 then step to disk 2 => 6 to 2...
mount_path = sys.argv[1]
@zetas
zetas / default.json
Created June 13, 2018 06:00
iTerm2 Byobu Keybind Profile.
{
"Ansi 5 Color" : {
"Green Component" : 0.4117647111415863,
"Blue Component" : 0.78823530673980713,
"Red Component" : 0.55686277151107788
},
"Working Directory" : "\/Users\/david",
"Prompt Before Closing 2" : 0,
"Selected Text Color" : {
"Green Component" : 0.729411780834198,
<?php
namespace app\extensions\data\behavior;
use nzedb\Users;
use lithium\aop\Filters;
class Vip extends \li3_behaviors\data\model\Behavior
{
@Thermionix
Thermionix / auth-basic.conf
Last active November 4, 2021 00:56
nginx reverse proxy for sickbeard, couchpotato etc.
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/htpasswd;