Package livecd-gnome3-setup-done: Скрипты

Pre uninstall

1
2
3
4
5
6
# just removing skel file is too late for the first user
# created by livecd-install process, for example
find /home -maxdepth 2 -mindepth 2 -name .config -type d |
	while read i; do
		[ -d "$i/dconf" ] || rm -f "$i/gnome-initial-setup-done"
	done