#!/bin/bash
##
## ubuntu-server-tip-motu
## ~~~~~~~~~~~~~~~~~~~~~~
## Script for retriving the suitable Ubuntu Server Tip fortune 
## based on the system language, as fortune doesn't have native
## l10n/i18n support.
##
## License: BSD License
## Copyright © 2009 Dave Walker (Daviey) <DaveWalker@ubuntu.com>

DISABLE_FILE="$HOME/.cache/fortunes-ubuntu-server-motd.disable"

if [ -f DISABLE_FILE ] ; then
  ## Disabled by users request
  exit 0
fi

/usr/bin/ubuntu-server-tip
