From c5112b85f11681b9b68b62481c0e574aa0c39c56 Mon Sep 17 00:00:00 2001 From: Josh North Date: Thu, 22 Oct 2015 08:55:05 -0400 Subject: [PATCH] Update README.md --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 44215a6..3fe6e12 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,20 @@ # debuntu-toolkit Miscellaneous scripts for system admin -### cfddnsv6.sh +#### cfddnsv6.sh This script updates CloudFlare IPv6 DNS records with your current IP address, as pulled from the interface directly. Best use case is having an ISP who arbitrarily changes your prefix. For safety, we do not create records, we only update records that match the hostname in the zone, so you must log in to CloudFlare and create your records first! Right now we run this from cron--- at reboot and every so often after. This example runs it at reboot and every half hour, adjust to taste. ``` @reboot /usr/local/bin/cfddnsv6.sh >/dev/null 2>&1 */30 * * * * /usr/local/bin/cfddnsv6.sh >/dev/null 2>&1 ``` -QUICK INSTALL: +###### Quick Install: ``` sudo wget -O /usr/local/bin/cfddnsv6.sh https://raw.githubusercontent.com/Point808/debuntu-toolkit/master/cfddnsv6.sh; sudo chmod +x /usr/local/bin/cfddnsv6.sh ``` - -### cleanup.sh +#### cleanup.sh Quick and dirty script to clear disk space (log files, apt cache, etc etc) - useful if creating a machine template. - +###### Quick Install: +``` +sudo wget -O /usr/local/bin/cleanup.sh https://raw.githubusercontent.com/Point808/debuntu-toolkit/master/cleanup.sh; sudo chmod +x /usr/local/bin/cleanup.sh +```