summaryrefslogtreecommitdiffstats
path: root/ipatests/test_integration/test_advise.py
diff options
context:
space:
mode:
authorGabe <redhatrises@gmail.com>2015-12-04 14:52:03 -0700
committerMartin Basti <mbasti@redhat.com>2015-12-11 18:46:10 +0100
commit5c9b9089b7b0d40b7e924177f99c2568aaa1b5b2 (patch)
treee92145418e1d30eaa6c28376f90e198d0ebe84db /ipatests/test_integration/test_advise.py
parent14a44ea47bf9a617019ebc91fbe272215c428d82 (diff)
downloadfreeipa-5c9b9089b7b0d40b7e924177f99c2568aaa1b5b2.tar.gz
freeipa-5c9b9089b7b0d40b7e924177f99c2568aaa1b5b2.tar.xz
freeipa-5c9b9089b7b0d40b7e924177f99c2568aaa1b5b2.zip
Migrate wget references and usage to curl
https://fedorahosted.org/freeipa/ticket/5458 Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipatests/test_integration/test_advise.py')
-rw-r--r--ipatests/test_integration/test_advise.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/ipatests/test_integration/test_advise.py b/ipatests/test_integration/test_advise.py
index b5abe30a5..613096f1c 100644
--- a/ipatests/test_integration/test_advise.py
+++ b/ipatests/test_integration/test_advise.py
@@ -80,7 +80,7 @@ class TestAdvice(IntegrationTest):
def test_advice_GenericNSSPAM(self):
advice_id = 'config-generic-linux-nss-pam-ldapd'
advice_regex = "\#\!\/bin\/sh.*" \
- "apt\-get[\s]+\-y[\s]+install[\s]+wget[\s]+openssl[\s]+" \
+ "apt\-get[\s]+\-y[\s]+install[\s]+curl[\s]+openssl[\s]+" \
"libnss\-ldapd[\s]+libpam\-ldapd[\s]+nslcd.*" \
"service[\s]+nscd[\s]+stop[\s]+\&\&[\s]+service[\s]+" \
"nslcd[\s]+restart"
@@ -92,7 +92,7 @@ class TestAdvice(IntegrationTest):
def test_advice_GenericSSSDBefore19(self):
advice_id = 'config-generic-linux-sssd-before-1-9'
advice_regex = "\#\!\/bin\/sh.*" \
- "apt\-get[\s]+\-y[\s]+install sssd wget openssl.*" \
+ "apt\-get[\s]+\-y[\s]+install sssd curl openssl.*" \
"service[\s]+sssd[\s]+start"
raiseerr = True
@@ -102,7 +102,7 @@ class TestAdvice(IntegrationTest):
def test_advice_RedHatNSS(self):
advice_id = 'config-redhat-nss-ldap'
advice_regex = "\#\!\/bin\/sh.*" \
- "yum[\s]+install[\s]+\-y[\s]+wget[\s]+openssl[\s]+nss_ldap" \
+ "yum[\s]+install[\s]+\-y[\s]+curl[\s]+openssl[\s]+nss_ldap" \
"[\s]+authconfig.*authconfig[\s]+\-\-updateall" \
"[\s]+\-\-enableldap[\s]+\-\-enableldapauth[\s]+" \
"\-\-ldapserver=.*[\s]+\-\-ldapbasedn=.*"
@@ -114,7 +114,7 @@ class TestAdvice(IntegrationTest):
def test_advice_RedHatNSSPAM(self):
advice_id = 'config-redhat-nss-pam-ldapd'
advice_regex = "\#\!\/bin\/sh.*" \
- "yum[\s]+install[\s]+\-y[\s]+wget[\s]+openssl[\s]+" \
+ "yum[\s]+install[\s]+\-y[\s]+curl[\s]+openssl[\s]+" \
"nss\-pam\-ldapd[\s]+pam_ldap[\s]+authconfig.*" \
"authconfig[\s]+\-\-updateall[\s]+" \
"\-\-enableldap[\s]+\-\-enableldapauth[\s]+" \
@@ -128,7 +128,7 @@ class TestAdvice(IntegrationTest):
advice_id = 'config-redhat-sssd-before-1-9'
advice_regex = "\#\!\/bin\/sh.*" \
"yum[\s]+install[\s]+\-y[\s]+sssd[\s]+authconfig[\s]+" \
- "wget[\s]+openssl.*service[\s]+sssd[\s]+start"
+ "curl[\s]+openssl.*service[\s]+sssd[\s]+start"
raiseerr = True
run_advice(self.master, advice_id, advice_regex, raiseerr)