Skip to content

Commit

Permalink
Release 1.0.3 (#31)
Browse files Browse the repository at this point in the history
* Bugfix/#17942 rbli service add minio (#29)
  • Loading branch information
nilsver committed Jul 9, 2024
1 parent 9590e60 commit df6fd12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.2
1.0.3
7 changes: 3 additions & 4 deletions resources/lib/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ def execute()
not_enable_services.push(service) unless enabled

if systemd_services[service]
systemd_services[service].each do |systemd_service|
systemctl_services.push(systemd_service)
end
not_enable_services.concat(systemd_services[service]) unless services[service] # Some 'systemd services' needs to be included even if not in 'services'. I.e. minio
systemctl_services.concat(systemd_services[service])
end
end
not_enable_services.uniq!

# Counters
running = 0
Expand Down Expand Up @@ -292,4 +292,3 @@ def execute(node,*services)
end

$parser.add_command(ServiceCmd.new)

0 comments on commit df6fd12

Please sign in to comment.