<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Protecting core packages from 3rd party software</title>
	<atom:link href="http://blog.sumostyle.net/robg/2007/05/14/protecting-core-packages-from-3rd-party-software/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sumostyle.net/robg/2007/05/14/protecting-core-packages-from-3rd-party-software/</link>
	<description>Mildly Useful Stuff</description>
	<lastBuildDate>Fri, 28 Oct 2011 19:43:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Ralf Brunckhorst</title>
		<link>http://blog.sumostyle.net/robg/2007/05/14/protecting-core-packages-from-3rd-party-software/comment-page-1/#comment-9</link>
		<dc:creator>Ralf Brunckhorst</dc:creator>
		<pubDate>Wed, 20 Feb 2008 19:00:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sumostyle.net/robg/?p=76#comment-9</guid>
		<description>Thank you so much.

/Ralf</description>
		<content:encoded><![CDATA[<p>Thank you so much.</p>
<p>/Ralf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robg</title>
		<link>http://blog.sumostyle.net/robg/2007/05/14/protecting-core-packages-from-3rd-party-software/comment-page-1/#comment-8</link>
		<dc:creator>robg</dc:creator>
		<pubDate>Tue, 19 Feb 2008 21:32:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sumostyle.net/robg/?p=76#comment-8</guid>
		<description>And I found the original:&lt;p&gt;
&lt;pre&gt;
#!/bin/sh

# Make sure to have yum-utils, anaconda, anaconda-runtime installed.
# Run as root.

# Works for Fedora Core 5 i386 and x86_64.

# Structure: $FCBASE/ - Contents of DVD
#            $FCBASE/updates - Directory where updates will be downloaded.
#            $FCBASE/update.sh - This script

export PYTHONPATH=/usr/lib/anaconda
export PATH=&quot;$PATH:/usr/lib/anaconda-runtime&quot;
export FCBASE=`pwd`
arch=`uname -i`
date=`date +%Y%m%d`

# Uncomment if you need Proxy support for wget
#export http_proxy=&quot;http://172.24.83.67:8080&quot;

echo &quot;`date` - Downloading updates...&quot;
echo &quot;&quot;

cd $FCBASE/updates
wget -nH -q --cut-dirs=7 -m -l 1 -c \
        http://download.fedora.redhat.com/pub/fedora/linux/core/updates/5/$arch/
cd $FCBASE

echo &quot;`date` - Merging updates...&quot;
echo &quot;&quot;

cp -f $FCBASE/updates/*.rpm $FCBASE/$arch/Fedora/RPMS/
repomanage --old $FCBASE/$arch/Fedora/RPMS &#124; xargs rm -f
cd $FCBASE/$arch
createrepo -g Fedora/base/comps.xml .
cd ..

echo &quot;`date` - Rebuilding installer...&quot;
echo &quot;&quot;
pkgorder $FCBASE/$arch $arch Fedora &gt; $FCBASE/pkgfile.$date
buildinstall --comp dist-5.$date --pkgorder $FCBASE/pkgfile.$date \
        --version 5 --product &#039;Fedora Core&#039; --release &#039;Fedora Core 5&#039; \
        --prodpath Fedora $FCBASE/$arch
rm -f $FCBASE/pkgfile.$date

echo &quot;`date` - Creating DVD iso...&quot;
echo &quot;&quot;

find $arch -name &quot;TRANS.TBL&quot; -exec rm -f {} \;
mkisofs -q -r -R -J -T -no-emul-boot -boot-load-size 4 -boot-info-table \
    -V &quot;FC 5.$date $arch DVD&quot; \
    -A &quot;Fedora Core 5 $date $arch DVD&quot; \
    -publisher &quot;Simone Caronni slaanesh@fastwebnet.it&quot; \
    -p &quot;Simone Caronni slaanesh@fastwebnet.it&quot; \
    -b isolinux/isolinux.bin -c isolinux/boot.cat -x lost+found \
    -o FC-5.$date-$arch-DVD.iso $arch
implantisomd5 FC-5.$date-$arch-DVD.iso
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>And I found the original:
<pre>
#!/bin/sh

# Make sure to have yum-utils, anaconda, anaconda-runtime installed.
# Run as root.

# Works for Fedora Core 5 i386 and x86_64.

# Structure: $FCBASE/ - Contents of DVD
#            $FCBASE/updates - Directory where updates will be downloaded.
#            $FCBASE/update.sh - This script

export PYTHONPATH=/usr/lib/anaconda
export PATH="$PATH:/usr/lib/anaconda-runtime"
export FCBASE=`pwd`
arch=`uname -i`
date=`date +%Y%m%d`

# Uncomment if you need Proxy support for wget
#export http_proxy="http://172.24.83.67:8080"

echo "`date` - Downloading updates..."
echo ""

cd $FCBASE/updates
wget -nH -q --cut-dirs=7 -m -l 1 -c \
        <a href="http://download.fedora.redhat.com/pub/fedora/linux/core/updates/5/$arch/" rel="nofollow">http://download.fedora.redhat.com/pub/fedora/linux/core/updates/5/$arch/</a>
cd $FCBASE

echo "`date` - Merging updates..."
echo ""

cp -f $FCBASE/updates/*.rpm $FCBASE/$arch/Fedora/RPMS/
repomanage --old $FCBASE/$arch/Fedora/RPMS | xargs rm -f
cd $FCBASE/$arch
createrepo -g Fedora/base/comps.xml .
cd ..

echo "`date` - Rebuilding installer..."
echo ""
pkgorder $FCBASE/$arch $arch Fedora > $FCBASE/pkgfile.$date
buildinstall --comp dist-5.$date --pkgorder $FCBASE/pkgfile.$date \
        --version 5 --product 'Fedora Core' --release 'Fedora Core 5' \
        --prodpath Fedora $FCBASE/$arch
rm -f $FCBASE/pkgfile.$date

echo "`date` - Creating DVD iso..."
echo ""

find $arch -name "TRANS.TBL" -exec rm -f {} \;
mkisofs -q -r -R -J -T -no-emul-boot -boot-load-size 4 -boot-info-table \
    -V "FC 5.$date $arch DVD" \
    -A "Fedora Core 5 $date $arch DVD" \
    -publisher "Simone Caronni <a href="mailto:slaanesh@fastwebnet.it">slaanesh@fastwebnet.it</a>" \
    -p "Simone Caronni <a href="mailto:slaanesh@fastwebnet.it">slaanesh@fastwebnet.it</a>" \
    -b isolinux/isolinux.bin -c isolinux/boot.cat -x lost+found \
    -o FC-5.$date-$arch-DVD.iso $arch
implantisomd5 FC-5.$date-$arch-DVD.iso
</pre></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: robg</title>
		<link>http://blog.sumostyle.net/robg/2007/05/14/protecting-core-packages-from-3rd-party-software/comment-page-1/#comment-7</link>
		<dc:creator>robg</dc:creator>
		<pubDate>Tue, 19 Feb 2008 21:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sumostyle.net/robg/?p=76#comment-7</guid>
		<description>I have found these scripts on the old site:&lt;p&gt;
&lt;a href=&quot;http://users.on.net/~rgarth/downloads/karsten/update_fedora.sh&quot; rel=&quot;nofollow&quot;&gt; http://users.on.net/~rgarth/downloads/karsten/update_fedora.sh&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://users.on.net/~rgarth/downloads/karsten/update_fedora_20060527.sh&quot; rel=&quot;nofollow&quot;&gt; http://users.on.net/~rgarth/downloads/karsten/update_fedora_2006_05_27.sh&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://users.on.net/~rgarth/downloads/remek/fc_update.sh&quot; rel=&quot;nofollow&quot;&gt; http://users.on.net/~rgarth/downloads/remek/fc_update.sh&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I have found these scripts on the old site:
<p>
<a href="http://users.on.net/~rgarth/downloads/karsten/update_fedora.sh" rel="nofollow"> </a><a href="http://users.on.net/~rgarth/downloads/karsten/update_fedora.sh" rel="nofollow">http://users.on.net/~rgarth/downloads/karsten/update_fedora.sh</a><br />
<a href="http://users.on.net/~rgarth/downloads/karsten/update_fedora_20060527.sh" rel="nofollow"> </a><a href="http://users.on.net/~rgarth/downloads/karsten/update_fedora_2006_05_27.sh" rel="nofollow">http://users.on.net/~rgarth/downloads/karsten/update_fedora_2006_05_27.sh</a><br />
<a href="http://users.on.net/~rgarth/downloads/remek/fc_update.sh" rel="nofollow"> </a><a href="http://users.on.net/~rgarth/downloads/remek/fc_update.sh" rel="nofollow">http://users.on.net/~rgarth/downloads/remek/fc_update.sh</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ralf Brunckhorst</title>
		<link>http://blog.sumostyle.net/robg/2007/05/14/protecting-core-packages-from-3rd-party-software/comment-page-1/#comment-6</link>
		<dc:creator>Ralf Brunckhorst</dc:creator>
		<pubDate>Tue, 19 Feb 2008 12:20:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sumostyle.net/robg/?p=76#comment-6</guid>
		<description>Hi, I use this to contact you. Since your weblog has moved I cannot find a script to create a updated fedora boot dvd. Many links in the web point to http://www.users.on.net/~rgarth/weblog/fedora/patch_cd.autumn and there was a script update.sh
I use this script in the past but accidentally delete it.
But now I cannot find it anymore in the WEB.
Can you help please.

/Ralf</description>
		<content:encoded><![CDATA[<p>Hi, I use this to contact you. Since your weblog has moved I cannot find a script to create a updated fedora boot dvd. Many links in the web point to <a href="http://www.users.on.net/~rgarth/weblog/fedora/patch_cd.autumn" rel="nofollow">http://www.users.on.net/~rgarth/weblog/fedora/patch_cd.autumn</a> and there was a script update.sh<br />
I use this script in the past but accidentally delete it.<br />
But now I cannot find it anymore in the WEB.<br />
Can you help please.</p>
<p>/Ralf</p>
]]></content:encoded>
	</item>
</channel>
</rss>

