On 21/03/06, boricua <boricua@xxxxxxxxxxxxxxx> wrote: > On Tue, 21 Mar 2006 12:56:34 +0000 > "Will McDonald" <wmcdonald@xxxxxxxxx> wrote: > > > On 21/03/06, boricua <boricua@xxxxxxxxxxxxxxx> wrote: > > > is there a yum repo for webmin? > > > > Webmin's available from RPMForge/Dag. > > i am faily new to both centos and yum > how can i add the repor to my yum? http://dag.wieers.com/home-made/apt/FAQ.php Setup Dag's GPG key... rpm --import http://dag.wieers.com/packages/RPM-GPG-KEY.dag.txt Then either create /etc/yum.repos.d/dag.repo and add the following... #<---------------------CUT---------------------># [dag] name=Dag RPM Repository for Red Hat Enterprise Linux baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag gpgcheck=1 enabled=1 #<---------------------CUT---------------------># Or just add the above to /etc/yum.conf You may also want to limit the packages you get from non base CentOS repositories so you know exactly which repo specific additional packages are coming from. You do that with the includepkgs= directive as follows... #<---------------------CUT---------------------># [dag] name=Dag RPM Repository for Red Hat Enterprise Linux baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag gpgcheck=1 enabled=1 includepkgs=webmin perl-Mon perl-Authen-PAM perl-Net-SSLeay #<---------------------CUT---------------------># You need perl-Mon, perl-Net-SSLeay and perl-Authen-PAM to fulfil some webmin dependencies (the others are fulfilled by the default CentOS repositories IIRC). [root@dblvsserv1a ha.d]# rpm -qR webmin perl perl(Net::SSLeay) perl(CGI) perl(Mon::Client) perl(Authen::PAM) openssl /bin/sh /bin/sh /bin/sh rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1 Will.