Files
new_install/operation/99finish_install.sh
fling e26ea61ec2 modified: 99finish_install.sh
fix rm -f *-serv.conf
2010-11-19 15:35:57 +08:00

14 lines
186 B
Bash
Executable File

#!/bin/bash
# run post_add scripts
#
pkg_dir=/var/lib/pkg
ls -rt ${pkg_dir}/*.post_add | while read pa_file
do
source ${pa_file}
rm ${pa_file}
done
rm -f $pkg_dir/*-serv.conf