Skip to content
Snippets Groups Projects
Commit 339c421a authored by Jörg Sachse's avatar Jörg Sachse
Browse files

Merge branch 'master' of...

parents 2108c4bd a7c46b7c
No related branches found
No related tags found
No related merge requests found
......@@ -86,3 +86,4 @@ iso/
# time new systems should be installed. Hence, it's not suitable for version
# control.
vars/network.yml
fstab
......@@ -29,4 +29,4 @@
strategy: linear
roles:
- { role: ansible_lza_create_rhel_iso }
- { role: ansible_lza_create_rhel_iso, become: true }
---
### PREPARATION
# install prerequisites
- name: install xorriso
apt:
name: "xorriso"
state: latest
# Create a separate build directory so the role directory is not overly polluted
- name: create build directory
file:
......@@ -14,7 +19,7 @@
opts: "loop"
path: "{{ playbook_dir }}/iso/"
src: "{{ playbook_dir }}/rhel-server-{{ rhel_version_long }}-x86_64-dvd.iso"
fstab: "/tmp/fstab"
fstab: "{{ playbook_dir }}/fstab"
state: mounted
# Copy contents of ISO image to the build directory, because they will need to
# be included in the new image.
......
......@@ -14,7 +14,7 @@ keyboard --vckeymap=de-nodeadkeys --xlayouts='de (nodeadkeys)'
lang de_DE.UTF-8
# Network information
network --bootproto=static --device=ens192 --ethtool="autoneg on" --gateway=212.201.61.1 --ip={{ item.ip_address }} --nameserver=194.95.142.157,194.95.142.203,194.95.142.200 --netmask=255.255.255.192 --ipv6=auto --activate
network --bootproto=static --device=ens192 --ethtool="autoneg on" --gateway={{ item.gateway }} --ip={{ item.ip_address }} --nameserver=194.95.142.157,194.95.142.203,194.95.142.200 --netmask={{ item.netmask }} --ipv6=auto --activate
network --hostname={{ item.hostname }}.slub-dresden.de
repo --name="Server-HighAvailability" --baseurl=file:///run/install/repo/addons/HighAvailability
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment