Skip to content

Commit e7429b6

Browse files
committed
Revert "split package version for OS family"
This reverts commits: -d56f7dfb01b0dd0954f30c1e8f322146dc5e7b37 -15e50806a5971fe4c2b870d0442127214547b91e
1 parent 0bba34c commit e7429b6

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

manifests/dashboard.pp

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
class wazuh::dashboard (
44
$dashboard_package = 'wazuh-dashboard',
55
$dashboard_service = 'wazuh-dashboard',
6-
$dashboard_version = '4.3.10',
6+
$dashboard_version = '4.3.10-1',
77
$indexer_server_ip = 'localhost',
88
$indexer_server_port = '9200',
99
$dashboard_path_certs = '/etc/wazuh-dashboard/certs',
@@ -42,19 +42,9 @@
4242
}
4343
}
4444

45-
# assign version according to the package manager
46-
case $facts['os']['family'] {
47-
'Debian': {
48-
$dashboard_version_install = "${dashboard_version}-*"
49-
}
50-
'Linux', 'RedHat', default: {
51-
$dashboard_version_install = $dashboard_version
52-
}
53-
}
54-
5545
# install package
5646
package { 'wazuh-dashboard':
57-
ensure => $dashboard_version_install,
47+
ensure => $dashboard_version,
5848
name => $dashboard_package,
5949
}
6050

0 commit comments

Comments
 (0)