1 |
%define name smeserver-extrarepositories |
%define name smeserver-extrarepositories |
2 |
%define version 0.1 |
%define version 0.1 |
3 |
%define release 7 |
%define release 8 |
4 |
Summary: easy configuration of extra yum repo |
Summary: easy configuration of extra yum repo |
5 |
Name: %{name} |
Name: %{name} |
6 |
Version: %{version} |
Version: %{version} |
18 |
Provides configuration for external yum repository comaptible with Koozali SME Server. |
Provides configuration for external yum repository comaptible with Koozali SME Server. |
19 |
|
|
20 |
%changelog |
%changelog |
21 |
|
* Fri Dec 28 2018 Jean-Philipe Pialasse <tests@pialasse.com> 0.1-8.sme |
22 |
|
- zmrepo url has changed [SME: 10675] |
23 |
|
|
24 |
* Mon Nov 30 2018 John Crisp <jcrisp@safeandsoundit.co.uk> 0.1-7.sme |
* Mon Nov 30 2018 John Crisp <jcrisp@safeandsoundit.co.uk> 0.1-7.sme |
25 |
- Add libreswan repo [SME: 10605] |
- Add libreswan repo [SME: 10605] |
26 |
- remove duplicate remi-safe entry |
- remove duplicate remi-safe entry |
820 |
REPO['EnableGroups']='no' |
REPO['EnableGroups']='no' |
821 |
REPO['Visible']='yes' |
REPO['Visible']='yes' |
822 |
REPO['status']='disabled' |
REPO['status']='disabled' |
823 |
REPO['BaseURL']='http://zmrepo.mehvc.com/el/$releasever/$basearch' |
REPO['BaseURL']='http://zmrepo.zoneminder.com/el/$releasever/$basearch' |
824 |
REPO['MirrorList']='' |
REPO['MirrorList']='' |
825 |
REPO['GPGCheck']='no' |
REPO['GPGCheck']='no' |
826 |
REPO['GPGKey']="" |
REPO['GPGKey']="" |
894 |
|
|
895 |
EOF |
EOF |
896 |
|
|
897 |
|
cat << 'EOF' >$RPM_BUILD_ROOT/etc/e-smith/db/yum_repositories/migrate/10epel |
898 |
|
{ |
899 |
|
for my $name ( qw(zmrepo) ) |
900 |
|
{ |
901 |
|
my $repo = $DB->get($name) or next; |
902 |
|
my $BaseURL = $repo->prop('BaseURL') || ''; |
903 |
|
my $BaseURL = s/zmrepo.mehvc.com/zmrepo.zoneminder.com/g; |
904 |
|
} |
905 |
|
|
906 |
|
} |
907 |
|
|
908 |
|
EOF |
909 |
|
|
910 |
|
|
911 |
|
|