Sha256: 6042814c9c279063f4526f5967b76aa646dd120ca469d0b9bcb023b7cfeb931d

Contents?: true

Size: 997 Bytes

Versions: 56

Compression:

Stored size: 997 Bytes

Contents

<%#
kind: job_template
name: Check Update - SSH Default
model: JobTemplate
job_category: Packages
description_format: "Check for package updates"
provider_type: SSH
%>

<%
  supported_families = ['Redhat', 'Debian', 'Suse']
  render_error(N_('Unsupported or no operating system found for this host.')) unless @host.operatingsystem && supported_families.include?(@host.operatingsystem.family)

  command = case @host.operatingsystem.family
            when 'Redhat'
              'yum check-update'
            when 'Debian'
              'apt list --upgradable'
            when 'Suse'
              'zypper list-updates'
            end
-%>

<%= command %>
<% if command.start_with? 'yum' %>
rc=$?
# yum check-update returns 100 when there are updates available
if [ $rc -eq 100 ]; then
    # In this case, we override the exit code to 0 so Remote Execution
    # can consider this run as successful
    (exit 0)
else
    # For any other exit code, we don't modify it
    (exit $rc)
fi
<% end %>

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
foreman_remote_execution-5.0.8 app/views/templates/ssh/check_update.erb
foreman_remote_execution-5.0.7 app/views/templates/ssh/check_update.erb
foreman_remote_execution-5.0.6 app/views/templates/ssh/check_update.erb
foreman_remote_execution-5.0.5 app/views/templates/ssh/check_update.erb
foreman_remote_execution-5.0.4 app/views/templates/ssh/check_update.erb
foreman_remote_execution-5.0.3 app/views/templates/ssh/check_update.erb
foreman_remote_execution-6.0.0 app/views/templates/ssh/check_update.erb
foreman_remote_execution-5.0.2 app/views/templates/ssh/check_update.erb
foreman_remote_execution-5.1.0 app/views/templates/ssh/check_update.erb
foreman_remote_execution-5.0.1 app/views/templates/ssh/check_update.erb
foreman_remote_execution-5.0.0 app/views/templates/ssh/check_update.erb
foreman_remote_execution-4.8.0 app/views/templates/ssh/check_update.erb
foreman_remote_execution-4.5.6 app/views/templates/ssh/check_update.erb
foreman_remote_execution-4.5.5 app/views/templates/ssh/check_update.erb
foreman_remote_execution-4.5.4 app/views/templates/ssh/check_update.erb
foreman_remote_execution-4.7.0 app/views/templates/ssh/check_update.erb
foreman_remote_execution-4.5.3 app/views/templates/ssh/check_update.erb
foreman_remote_execution-4.5.2 app/views/templates/ssh/check_update.erb
foreman_remote_execution-4.5.1 app/views/templates/ssh/check_update.erb
foreman_remote_execution-4.6.0 app/views/templates/ssh/check_update.erb