41 lines
1.6 KiB
YAML
41 lines
1.6 KiB
YAML
# Copyright 2019, VEXXHOST, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
- name: Add dell-system-update_independent
|
|
become: true
|
|
yum_repository:
|
|
name: dell-system-update_independent
|
|
description: dell-system-update_independent
|
|
file: dell-system-update
|
|
baseurl: https://linux.dell.com/repo/hardware/dsu/os_independent/
|
|
gpgcheck: true
|
|
gpgkey:
|
|
- https://linux.dell.com/repo/pgp_pubkeys/0x756ba70b1019ced6.asc
|
|
- https://linux.dell.com/repo/pgp_pubkeys/0x1285491434D8786F.asc
|
|
- https://linux.dell.com/repo/pgp_pubkeys/0xca77951d23b66a9d.asc
|
|
exclude:
|
|
- dell-system-update*.i386
|
|
|
|
- name: Add dell-system-update_dependent
|
|
become: true
|
|
yum_repository:
|
|
name: dell-system-update_dependent
|
|
description: dell-system-update_dependent
|
|
file: dell-system-update
|
|
mirrorlist: https://linux.dell.com/repo/hardware/dsu/mirrors.cgi?osname=el$releasever&basearch=$basearch&native=1
|
|
gpgcheck: true
|
|
gpgkey:
|
|
- https://linux.dell.com/repo/pgp_pubkeys/0x756ba70b1019ced6.asc
|
|
- https://linux.dell.com/repo/pgp_pubkeys/0x1285491434D8786F.asc
|
|
- https://linux.dell.com/repo/pgp_pubkeys/0xca77951d23b66a9d.asc |