Koozali.org: home of the SME Server

Obsolete Releases => SME 7.x Contribs => Topic started by: fixit on October 18, 2007, 05:02:53 AM

Title: how do i remove repository
Post by: fixit on October 18, 2007, 05:02:53 AM
what is the correct way to remove yum repositories, such as; Dag repository for example.

Thanks, Russell
Title: Re: how do i remove repository
Post by: cactus on October 18, 2007, 08:15:59 AM
what is the correct way to remove yum repositories, such as; Dag repository for example.

Thanks, Russell
Code: [Select]
db yum_repositories delete repositoryname
expand-template /etc/yum.conf
But you could also considering setting the repository to disabled so you can use it in the future from the command line with the --enablerepo= option:
Code: [Select]
db yum_repositories repositoryname setprop status disabled
expand-template /etc/yum.conf
Title: Re: how do i remove repository
Post by: fixit on October 18, 2007, 09:32:09 AM
Thanks Cactus