0

如何从ks.cfg文件 kickstart 在 RHEL 8 上从 remi 的 repo 安装 php rpm?

我尝试使用上面的文件,但在安装过程中失败并出现错误

#version=RHEL8
bootloader --location=mbr --append="rhgb quiet crashkernel=auto"
zerombr
clearpart --all --initlabel
autopart

# Use graphical install
graphical

# Use CDROM installation media
cdrom

# Keyboard layouts
keyboard --vckeymap=fr-oss --xlayouts='fr (oss)'

# System language
lang fr_FR.UTF-8

# Network information
network --device=link --onboot=yes --hostname=computer --bootproto=static --ip=192.168.1.151 --netmask=255.255.255.0 --activate

# Add local Repositories
repo --name="BaseOS" --baseurl=file:///run/install/repo/BaseOS
repo --name="AppStream" --baseurl=file:///run/install/repo/AppStream
repo --name="Ansible29" --baseurl=file:///run/install/repo/Ansible29
repo --name="Yarn" --baseurl=file:///run/install/repo/Yarn
repo --name="Epel" --baseurl=file:///run/install/repo/Epel
repo --name="Remi" --baseurl=file:///run/install/repo/Remi

# Root password
rootpw $1$Hvsdfsdf1tXYdfdsfsdfsfec$qtWxFDzzBsfdfdfs2Xxnn.rfwZzX0 --iscrypted
# administrateur user
user --name=administrateur --iscrypted --password=$1$Hv1tXYec$qtfdgdfWxFDzzB2dsdfdgdXxnn.rfwZzX0

auth --passalgo=sha512 --useshadow

# X Window System configuration information
xconfig  --startxonboot

# Run the Setup Agent on first boot
firstboot --disable

%pre --interpreter=/usr/bin/bash --log=/var/log/pre-installation-anaconda.log
%end

# Reboot auto after install
reboot

# SeLinux activation
selinux --disabled

# Intended system purpose
syspurpose --sla="Premium" --usage="Production"

# System timezone
timezone Europe/Paris --isUtc --nontp


module --name=php --stream=7.2 --disable
module --name=php --stream=remi-7.2

%packages --excludedocs
@^minimal-environment
@base-x
@GNOME
php
%end

%addon com_redhat_kdump --disable
%end

%post --interpreter=/usr/bin/bash --log=/var/log/post-installation-anaconda.log
%end

%anaconda
pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
%end

在此处输入图像描述

但在 anaconda 组或模块 php:remi-7.2 中找不到:§

它不取决于 rhel 版本而不是 php 版本

也许我错过了别的东西

4

1 回答 1

0

voici ma 解决方案最终

#version=RHEL8
bootloader --location=mbr --append="rhgb quiet crashkernel=auto"
zerombr
clearpart --all --initlabel
autopart

# Use graphical install
graphical

# Use CDROM installation media
cdrom

# Keyboard layouts
keyboard --vckeymap=fr-oss --xlayouts='fr (oss)'

# System language
lang fr_FR.UTF-8

# Network information
network --device=link --onboot=yes --hostname=toto--bootproto=static --ip=192.168.1.151 --netmask=255.255.255.0 --activate

# Add local Repositories
repo --name="BaseOS" --baseurl=file:///run/install/repo/BaseOS
repo --name="AppStream" --baseurl=file:///run/install/repo/AppStream
repo --name="Ansible29" --baseurl=file:///run/install/repo/Ansible29
repo --name="Yarn" --baseurl=file:///run/install/repo/Yarn
repo --name="RemiModular" --baseurl=file:///run/install/repo/RemiModular
repo --name="RemiSafe" --baseurl=file:///run/install/repo/RemiSafe
repo --name="Epel" --baseurl=file:///run/install/repo/Epel

# Root password
rootpw $dddd--iscrypted
# administrateur user
user --name=administrateur --iscrypted --password=$ddddddd

auth --passalgo=sha512 --useshadow

# X Window System configuration information
xconfig  --startxonboot

# Run the Setup Agent on first boot
firstboot --disable

%pre --interpreter=/usr/bin/bash --log=/var/log/pre-installation-anaconda.log
%end

# Reboot auto after install
reboot

# SeLinux activation
selinux --disabled

# Intended system purpose
syspurpose --sla="Premium" --usage="Production"

# System timezone
timezone Europe/Paris --isUtc --nontp

%packages
@^minimal-environment
@base-x
@GNOME
@php:remi-7.2/common
@composer:2/common
@postgresql:12/server
%end

%addon com_redhat_kdump --disable
%end

%post --interpreter=/usr/bin/bash --log=/var/log/post-installation-anaconda.log
%end

%anaconda
pwpolicy root --minlen=6 --minquality=1 --notstrict --nochanges --notempty
pwpolicy user --minlen=6 --minquality=1 --notstrict --nochanges --emptyok
pwpolicy luks --minlen=6 --minquality=1 --notstrict --nochanges --notempty
%end
于 2021-03-24T08:14:11.460 回答