Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
environments-recipes
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
grid5000
environments-recipes
Commits
e9a6e4ef
Commit
e9a6e4ef
authored
Dec 02, 2020
by
Baptiste Jonglez
Committed by
Pierre Neyron
Dec 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[centos] [ppc64] Add new kickstart configuration for CentOS 7/8 on ppc64le
parent
1e95d8c2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
97 additions
and
1 deletion
+97
-1
from_scratch/ppc64le/centos-base.yaml
from_scratch/ppc64le/centos-base.yaml
+1
-1
steps/data/kickstart/centos7-ppc64le-ks.cfg
steps/data/kickstart/centos7-ppc64le-ks.cfg
+52
-0
steps/data/kickstart/centos8-ppc64le-ks.cfg
steps/data/kickstart/centos8-ppc64le-ks.cfg
+44
-0
No files found.
from_scratch/ppc64le/centos-base.yaml
View file @
e9a6e4ef
...
...
@@ -33,7 +33,7 @@ global:
# If memory size is too low, the VM crashes.
qemu_memory_size
:
2G
base_kickstart_path
:
$${kameleon_data_dir}/kickstart/$${distrib}$${release_number}-ks.cfg
base_kickstart_path
:
$${kameleon_data_dir}/kickstart/$${distrib}$${release_number}-
$${arch}-
ks.cfg
qemu_sendkeys_commands
:
$${kameleon_data_dir}/qemu-sendkeys/netinst-$${distrib}-grub
...
...
steps/data/kickstart/centos7-ppc64le-ks.cfg
0 → 100644
View file @
e9a6e4ef
install
url --url="http://mirror.centos.org/altarch/7/os/ppc64le/"
lang en_US.UTF-8
keyboard --vckeymap=us --xlayouts='us'
timezone Europe/Paris --isUtc --ntpservers=0.centos.pool.ntp.org,1.centos.pool.ntp.org,2.centos.pool.ntp.org,3.centos.pool.ntp.org
network --device=eth0 --bootproto=dhcp --ipv6=auto --activate
firewall --enable --ssh
selinux --disabled
rootpw kameleon
text
skipx
logging --level=info
## Parition
clearpart --all --initlabel
bootloader --location=mbr
zerombr
# Disk partitioning information
# Automatically creates PReP partition
reqpart
part /boot --fstype="ext4" --size=500
part / --fstype="ext4" --size=3000 --grow
authconfig --enableshadow --passalgo=sha512
auth --useshadow --enablemd5
firstboot --disabled
reboot
%packages
@Core
-*firmware
-audit*
-libX*
-fontconfig
-freetype
dracut-config-generic
-dracut-config-rescue
bzip2
openssh-clients
openssh-server
%end
%post
# Update distribution
yum update -y
# Make ssh quicker in disconnected situations.
echo 'UseDNS no' >> /etc/ssh/sshd_config
%end
steps/data/kickstart/centos8-ppc64le-ks.cfg
0 → 100644
View file @
e9a6e4ef
install
url --url="http://mirror.centos.org/centos/8/BaseOS/ppc64le/os"
lang en_US.UTF-8
keyboard --vckeymap=us --xlayouts='us'
timezone Europe/Paris --isUtc --ntpservers=0.centos.pool.ntp.org,1.centos.pool.ntp.org,2.centos.pool.ntp.org,3.centos.pool.ntp.org
firewall --enable --ssh
selinux --disabled
rootpw kameleon
text
skipx
logging --level=info
## Parition
clearpart --all --initlabel
bootloader --location=mbr
zerombr
# Disk partitioning information
# Automatically creates PReP partition
reqpart
part /boot --fstype="ext4" --size=500
part / --fstype="ext4" --size=3000 --grow
authconfig --enableshadow --passalgo=sha512
auth --useshadow --enablemd5
firstboot --disabled
reboot
%packages
@Core
dracut-config-generic
tar
-dracut-config-rescue
%end
%post
# Update distribution
yum update -y
# Make ssh quicker in disconnected situations.
echo 'UseDNS no' >> /etc/ssh/sshd_config
%end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment