#!/bin/sh
if [ "x$1" != "x--yes-do-it" ];
then echo "This will do the following changes"
echo + No groups to add
echo + No users to add
echo
echo "OK? (y/n)"
read confirm
if [ "x$confirm" != "xy" ]; then exit 0; fi
fi
