Update yum repo with an easy script
Similar to how you can Build an apt repository on CentOS and update it with new packages with a simple script, you can do the same with a yum rpm repository.
cat <<'EOFUPDATE' > ./update-yumrepo.sh
#!/bin/sh
# working directory
repodir=/mnt/mirror/bgscripts/
cd ${repodir}
chmod 0644 *rpm 1>/dev/null 2>&1
# create the package index
createrepo .
EOFUPDATE
chmod u+x ./update-yumrepo.sh
Comments