#!/bin/bash
# This dumps the netinfo databases into it's proper passwd and group
# files. These files are normally unused on OS X, expect in single user
# but as long as the root user exists in the passwd file, there is no danger

nidump passwd / > /etc/passwd
nidump group / > /etc/group

