2021-03-11 21:10:30 +05:30
|
|
|
set -e
|
2021-02-28 22:48:11 +05:30
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
find config | sort > debian/upstream-config-file-list.new
|
|
|
|
if ! diff -u debian/upstream-config-file-list debian/upstream-config-file-list.new
|
|
|
|
then
|
|
|
|
echo "---------------------\n"
|
|
|
|
echo "Obsolete config files are:"
|
|
|
|
echo "---------------------"
|
2021-03-11 21:10:30 +05:30
|
|
|
comm -13 debian/upstream-config-file-list.new debian/upstream-config-file-list
|
2021-02-28 22:48:11 +05:30
|
|
|
echo "---------------------\n"
|
|
|
|
echo "These should be added to debian/maintscript"
|
|
|
|
echo "---------------------"
|
|
|
|
fi
|