aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@mandriva.org>2008-01-27 15:22:01 +0000
committerGuillaume Rousse <guillomovitch@mandriva.org>2008-01-27 15:22:01 +0000
commit1a25d92108710620a4d95117cfcd2f31119c1b6d (patch)
treef8e925e359dbdce14f3dba56733e57228b107be6
parentdfacc8a01681bcf203a859c8edf4c3d3a9c485e8 (diff)
downloadrpm-helper-1a25d92108710620a4d95117cfcd2f31119c1b6d.tar
rpm-helper-1a25d92108710620a4d95117cfcd2f31119c1b6d.tar.gz
rpm-helper-1a25d92108710620a4d95117cfcd2f31119c1b6d.tar.bz2
rpm-helper-1a25d92108710620a4d95117cfcd2f31119c1b6d.tar.xz
rpm-helper-1a25d92108710620a4d95117cfcd2f31119c1b6d.zip
useless filev0.21.0
-rwxr-xr-xbuild-config-file77
1 files changed, 0 insertions, 77 deletions
diff --git a/build-config-file b/build-config-file
deleted file mode 100755
index 347710b..0000000
--- a/build-config-file
+++ /dev/null
@@ -1,77 +0,0 @@
-#!/bin/sh
-#---------------------------------------------------------------
-# Project : Mandriva Linux
-# Module : rpm-helper
-# File : build-config-file
-# Version : $Id$
-# Author : Frederic Lepied
-# Created On : Sat Nov 1 08:21:42 2003
-# Purpose : concat files to build another one.
-#---------------------------------------------------------------
-
-if [[ $# != 1 ]]; then
- echo "usage: `basename $0` <config file>" 1>&2
- exit 1
-fi
-
-FILE=$1
-BASE=`basename $FILE`
-CONFIG=/etc/config-file/$BASE
-
-# variables that can be overriden in the config file
-
-COMMENT='#' # comment leader
-DIRS="${FILE}.d" # direcories to look for parts
-EXT='.conf' # default extension of parts
-POST= # executable to run after the merge
-PRE= # executable to run before the merge
-CONCAT=1 # if set to 1, concat the parts
-USER=root # user owning the file
-GROUP=root # group owning the file
-MODE=0644 # permissions of the file
-
-# code
-
-# source the config file to override the default settings
-
-if [[ -r $CONFIG ]]; then
- . $CONFIG
-fi
-
-# run pre command
-
-if [[ -x "$PRE" ]]; then
- $PRE $FILE
-fi
-
-# read the parts
-
-if [[ $CONCAT = 1 ]]; then
- rm -f $FILE
- for d in $DIRS; do
- for f in `ls ${d}/*${EXT} 2> /dev/null`; do
- if [[ -x $f ]]; then
- [[ -n "$COMMENT" ]] && echo "$COMMENT output from $f" >> $FILE
- $f >> $FILE
- elif [[ -r $f ]]; then
- [[ -n "$COMMENT" ]] && echo "$COMMENT $f" >> $FILE
- cat $f >> $FILE
- fi
- done
- done
-fi
-
-# set the owner, group and perms
-
-if [[ -f $FILE ]]; then
- chown $USER.$GROUP $FILE
- chmod $MODE $FILE
-fi
-
-# run post command
-
-if [[ -x "$POST" ]]; then
- $POST $FILE
-fi
-
-# build-config-file ends here