fix sed of web url

This commit is contained in:
Trevor Batley 2023-09-14 08:52:06 +10:00
parent 8b0d6024d0
commit 24956fadee

View File

@ -142,8 +142,8 @@ else
exit 1 exit 1
fi fi
# update hub config files to point at web server # update hub config files to point at web server
sed -i s/KojiWebURL*/KojiWebURL = http://$KOJI_WEB_FQDN\/koji/ /etc/koji-hub/hub.conf sed 's,KojiWebURL.*,KojiWebURL = http://$KOJI_WEB_FQDN/koji,g' /etc/koji-hub/hub.conf
sed -i s/weburl*/weburl = http://$KOJI_WEB_FQDN\/koji/ /etc/koji.conf sed 's,weburl.*,weburl = http://$KOJI_WEB_FQDN/koji,g' /etc/koji.conf
# generate a hub ssh key if there isn't one already (for scp & ssh to web server) # generate a hub ssh key if there isn't one already (for scp & ssh to web server)
if [ ! -f /root/.ssh/id-rsa ] ; then if [ ! -f /root/.ssh/id-rsa ] ; then
# create a ssh key on build server # create a ssh key on build server