#!/bin/bash

if ! test -d /etc/.svn; then
  exit 0
fi

cd /etc
svn st -q

