#!/bin/sh
#
# Re-used example from SJD
#

set -e

stamp="$COSMOS_BASE/stamps/common-tools-v02.stamp"

if ! test -f $stamp; then
    apt-get -y install vim traceroute tcpdump molly-guard less rsync git-core unattended-upgrades ntp wget
    update-alternatives --set editor /usr/bin/vim.basic

    mkdir -p `dirname $stamp`
    touch $stamp
fi