8 lines
208 B
Plaintext
8 lines
208 B
Plaintext
|
#!/bin/sh
|
||
|
for i in /install/postscripts/repos/$OSVER/$ARCH/*
|
||
|
do
|
||
|
TARGFILE=`basename $i`
|
||
|
TARGFILE=`echo $TARGFILE|sed -e s/.tmpl$//`
|
||
|
sed -e s!#INSTSERVER#!$MASTER! $i > /etc/yum/repos.d/$TARGFILE
|
||
|
done
|