tests: Use wildcard versions for packages
Chasing updated package versions is silly. We already have other tests to make sure the blueprints support version numbers there is no need to fail a test at the whim of an upstream repo.
This commit is contained in:
parent
80dd997b9c
commit
c69c76e9c9
@ -4,15 +4,15 @@ version = "0.0.1"
|
||||
|
||||
[[packages]]
|
||||
name = "tmux"
|
||||
version = "2.9a"
|
||||
version = "*"
|
||||
|
||||
[[packages]]
|
||||
name = "openssh-server"
|
||||
version = "8.*"
|
||||
version = "*"
|
||||
|
||||
[[packages]]
|
||||
name = "rsync"
|
||||
version = "3.1.*"
|
||||
version = "*"
|
||||
|
||||
[customizations.kernel]
|
||||
append = "nosmt=force"
|
||||
|
@ -4,8 +4,8 @@ version = "0.0.1"
|
||||
|
||||
[[modules]]
|
||||
name = "atlas"
|
||||
version = "3.10.*"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "python3-numpy"
|
||||
version = "1.15.*"
|
||||
version = "*"
|
||||
|
@ -4,7 +4,7 @@ version = "0.0.1"
|
||||
|
||||
[[packages]]
|
||||
name = "bash"
|
||||
version = "5.0.*"
|
||||
version = "*"
|
||||
|
||||
[customizations]
|
||||
hostname = "custombase"
|
||||
|
@ -3,12 +3,12 @@ description = "An example GlusterFS server with samba"
|
||||
|
||||
[[modules]]
|
||||
name = "glusterfs"
|
||||
version = "7.*"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "glusterfs-cli"
|
||||
version = "7.*"
|
||||
version = "*"
|
||||
|
||||
[[packages]]
|
||||
name = "samba"
|
||||
version = "4.*.*"
|
||||
version = "*"
|
||||
|
@ -4,32 +4,32 @@ version = "0.0.1"
|
||||
|
||||
[[modules]]
|
||||
name = "httpd"
|
||||
version = "2.4.*"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "mod_auth_openid"
|
||||
version = "0.8"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "mod_ssl"
|
||||
version = "2.4.*"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "php"
|
||||
version = "7.*"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "php-mysqlnd"
|
||||
version = "7.*"
|
||||
version = "*"
|
||||
|
||||
[[packages]]
|
||||
name = "tmux"
|
||||
version = "2.9a"
|
||||
version = "*"
|
||||
|
||||
[[packages]]
|
||||
name = "openssh-server"
|
||||
version = "8.*"
|
||||
version = "*"
|
||||
|
||||
[[packages]]
|
||||
name = "rsync"
|
||||
version = "3.1.*"
|
||||
version = "*"
|
||||
|
@ -4,12 +4,12 @@ version = "0.0.1"
|
||||
|
||||
[[modules]]
|
||||
name = "jboss-servlet-3.1-api"
|
||||
version = "1.0.*"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "jboss-interceptors-1.2-api"
|
||||
version = "1.0.*"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "java-1.8.0-openjdk"
|
||||
version = "1.8.0.*"
|
||||
version = "*"
|
||||
|
@ -4,24 +4,24 @@ version = "0.0.1"
|
||||
|
||||
[[modules]]
|
||||
name = "kubernetes"
|
||||
version = "1.10.*"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "docker"
|
||||
version = "1.13.*"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "docker-lvm-plugin"
|
||||
version = "1.13.*"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "etcd"
|
||||
version = "3.2.*"
|
||||
version = "*"
|
||||
|
||||
[[modules]]
|
||||
name = "flannel"
|
||||
version = "0.9.*"
|
||||
version = "*"
|
||||
|
||||
[[packages]]
|
||||
name = "oci-systemd-hook"
|
||||
version = "0.1.*"
|
||||
version = "*"
|
||||
|
@ -46,17 +46,17 @@ UTF8_TEST_STRING = "I w𝒊ll 𝟉ο𝘁 𝛠a𝔰ꜱ 𝘁𝒉𝝸𝚜"
|
||||
|
||||
|
||||
# HELPER CONSTANTS
|
||||
HTTP_GLOB = {"name":"httpd", "version":"2.4.*"}
|
||||
OPENID_GLOB = {"name":"mod_auth_openid", "version":"0.8"}
|
||||
MODSSL_GLOB = {"name":"mod_ssl", "version":"2.4.*"}
|
||||
PHP_GLOB = {"name":"php", "version":"7.*"}
|
||||
PHPMYSQL_GLOB = {"name": "php-mysqlnd", "version":"7.*"}
|
||||
OPENSSH_GLOB = {"name":"openssh-server", "version": "8.*"}
|
||||
RSYNC_GLOB = {"name": "rsync", "version": "3.1.*"}
|
||||
SAMBA_GLOB = {"name": "samba", "version": "4.*.*"}
|
||||
TMUX_GLOB = {"name": "tmux", "version": "2.9a"}
|
||||
GLUSTERFS_GLOB = {"name": "glusterfs", "version": "7.*"}
|
||||
GLUSTERFSCLI_GLOB = {"name": "glusterfs-cli", "version": "7.*"}
|
||||
HTTP_GLOB = {"name":"httpd", "version":"*"}
|
||||
OPENID_GLOB = {"name":"mod_auth_openid", "version":"*"}
|
||||
MODSSL_GLOB = {"name":"mod_ssl", "version":"*"}
|
||||
PHP_GLOB = {"name":"php", "version":"*"}
|
||||
PHPMYSQL_GLOB = {"name": "php-mysqlnd", "version":"*"}
|
||||
OPENSSH_GLOB = {"name":"openssh-server", "version": "*"}
|
||||
RSYNC_GLOB = {"name": "rsync", "version": "*"}
|
||||
SAMBA_GLOB = {"name": "samba", "version": "*"}
|
||||
TMUX_GLOB = {"name": "tmux", "version": "*"}
|
||||
GLUSTERFS_GLOB = {"name": "glusterfs", "version": "*"}
|
||||
GLUSTERFSCLI_GLOB = {"name": "glusterfs-cli", "version": "*"}
|
||||
|
||||
|
||||
def get_system_repo():
|
||||
|
Loading…
Reference in New Issue
Block a user