Compare commits

..

No commits in common. "afbb8cadc63c8694e4232b7703250e3cd66a0e1b" and "f8ef41d03b5b3d07a81c9bbbbebea8611ccfab98" have entirely different histories.

3 changed files with 1 additions and 8 deletions

View file

@ -15,7 +15,6 @@ Create an Oracle Linux 9 ISO for automatic server installation.
|netmask |str | no | | IPv4 subnet mask. This will only be used when ansible_host is a IP address. |
|ssh_keys |list[str] | no | | List of ssh public keys that will be added to .ssh/authorized_keys |
|iso_path |str | yes | | Storage location for the created ISO |
|luks_passphrase |str | yes | | Password for disk encryption. Consider password change after first boot. |
<!-- END Argument Specs -->
## Example Playbook
@ -25,7 +24,6 @@ Create an Oracle Linux 9 ISO for automatic server installation.
gather_facts: false
vars:
iso_path: "~/Downloads/OEL_{{ inventory_hostname }}.iso"
luks_passphrase: Password1
ssh_keys:
- "ssh-rsa 8J+OtU5ldmVyIGdvbm5hIGdpdmUgeW91IHVw8J+Otg== UmljayDwn5W6@IPCfp7sg"
roles:

View file

@ -55,8 +55,3 @@ argument_specs:
required: true
description: "Storage location for the created ISO"
type: "str"
luks_passphrase:
required: true
description: "Password for disk encryption. Consider password change after first boot."
type: "str"

View file

@ -73,7 +73,7 @@ ignoredisk --only-use=sda
# Partition clearing information
clearpart --all --initlabel
# Disk partitioning information
part pv.116 --fstype="lvmpv" --ondisk=sda --grow --size=25600 --encrypted --cipher=aes-xts-plain64 --passphrase={{ luks_passphrase }}
part pv.116 --fstype="lvmpv" --ondisk=sda --grow --size=25600
part /boot --fstype="xfs" --ondisk=sda --size=1024
volgroup ol --pesize=4096 pv.116
logvol /var/log --fstype="xfs" --size=2048 --name=var_log --vgname=ol