#!/bin/sh

if [ ! -e /etc/passwd ] ; then
	cp /usr/share/base-passwd/passwd.master /etc/passwd
fi

if [ ! -e /etc/group ] ; then
	cp /usr/share/base-passwd/group.master /etc/group
fi

#if grep "ftp:.*:11:" /etc/passwd > /dev/null; then
#	echo "Moving user ftp to uid 999."
#	update-passwd --sanity-check --move-ftp;
#else
#	update-passwd --sanity-check
#fi
