- Configure NTP
- Scheduled automatic diskspace alerts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular | |
.module('app', []) | |
.config(['$provide', function ($provide) { | |
window.errors = []; | |
$provide.decorator('$log', ['$delegate', function ($delegate) { | |
var origError = $delegate.error; | |
$delegate.error = function () { | |
window.errors.push(arguments); | |
origError.apply(null, arguments); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Weekly full + daily incrementals of full servers + dbs. | |
# Cron | |
# 0 4 * * 6 root bash /scripts/backup full >> /var/log/backup | |
# 0 4 * * 0,1,2,3,4,5 root bash /scripts/backup >> /var/log/backup | |
# Configure what folders to backup. | |
backup_files="/home /etc /root /boot /opt /scripts" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
EMAIL="[email protected]" | |
WARNING_LEVEL=90 | |
df -H | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5 " " $1 }' | while read output; | |
do | |
echo $output | |
usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 ) | |
partition=$(echo $output | awk '{ print $2 }' ) | |
if [ $usep -ge $WARNING_LEVEL ]; then | |
echo "Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)" | mail -s "Alert: Almost out of disk space $usep%" $EMAIL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Put this script in your /etc/cron.daily or schedule it through crontab. It should run as root and have x permissions. | |
# roelb unattended autoupdate | |
echo "" >> /var/log/autoupdate | |
echo "*****" >> /var/log/autoupdate | |
date >> /var/log/autoupdate | |
echo "Updating aptitude..." >> /var/log/autoupdate | |
aptitude update >> /var/log/autoupdate |
Simple Dashing widget to countdown until a certain moment. Flashes the widget when finished.
##Usage
To use this widget, copy countdown.html
, countdown.coffee
, and countdown.scss
into the /widgets/countdown
directory.
To include the widget in a dashboard, add the following snippet to the dashboard layout file:
NewerOlder