#!/bin/ash

# create .patches for next session

if [ -d /home/openslx ]; then
	for file in passwd shadow group; do
		diff -u /home/openslx/.$file.backup /etc/$file > /home/openslx/.$file.patch
	done
fi
