#!/bin/sh SKEL_DIR="/usr/share/llxcfg/skel/" TMPL_DIR="/usr/share/llxcfg/templates/" if [ -d "$SKEL_DIR" -a -d "$TMPL_DIR" ] ; then find "$SKEL_DIR" "$TMPL_DIR" -xtype f -printf "/%P\n" |sort -u > sysfiles.list fi # let's go with the upgrade exit 0