From: Michael Tremer Date: Sun, 21 Jun 2009 19:22:05 +0000 (+0200) Subject: Removed old script: archive.files. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ce17b7f739acae79f929bc4a692ce9cf6dcc42c;p=ipfire-3.x.git Removed old script: archive.files. --- diff --git a/src/scripts/archive.files b/src/scripts/archive.files deleted file mode 100755 index 9721ccc02..000000000 --- a/src/scripts/archive.files +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/bash -############################################################################### -# # -# IPFire.org - A linux based firewall # -# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt # -# # -# This program is free software: you can redistribute it and/or modify # -# it under the terms of the GNU General Public License as published by # -# the Free Software Foundation, either version 3 of the License, or # -# (at your option) any later version. # -# # -# This program is distributed in the hope that it will be useful, # -# but WITHOUT ANY WARRANTY; without even the implied warranty of # -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # -# GNU General Public License for more details. # -# # -# You should have received a copy of the GNU General Public License # -# along with this program. If not, see . # -# # -############################################################################### - -FILELIST= - -for dir in $@; do - for exclude in ${dir}/${TARGET}/*; do - EXCLUDE="$EXCLUDE $exclude" - done - - FILELIST="${FILELIST} ${EXCLUDE}" - - for include in ${dir}/*; do - [ -d ${include} ] && continue - IN=true - for exclude in ${EXCLUDE}; do - if [ "$(basename ${exclude})" = "$(basename ${include})" ]; then - IN=false - break - fi - done - ${IN} && FILELIST="${FILELIST} ${include}" - done -done - -cat ${FILELIST} | grep -v ^# | sort | uniq | sed "s/KVER/${KVER}/g"