chg: [doc] Makes v7/v8 more clear

pull/7300/head
Steve Clement 2021-04-06 13:13:02 +09:00
parent 26d24a576c
commit d39de3b60d
No known key found for this signature in database
GPG Key ID: 69A20F509BE4AEE9
2 changed files with 5 additions and 5 deletions

View File

@ -150,7 +150,7 @@ enableEPEL () {
## 2.01/ Install some base system dependencies
```bash
# <snippet-begin 0_yumInstallCoreDeps.sh>
# <snippet-begin 0_yumInstallCoreDeps7.sh>
yumInstallCoreDeps7 () {
# Install the dependencies:
PHP_BASE="/etc/"
@ -192,7 +192,7 @@ yumInstallCoreDeps7 () {
sudo systemctl enable --now php-fpm.service
}
# <snippet-end 0_yumInstallCoreDeps.sh>
# <snippet-end 0_yumInstallCoreDeps7.sh>
```
```bash

View File

@ -129,8 +129,8 @@ enableREMI_f33 () {
## 2.01/ Install some base system dependencies
```bash
# <snippet-begin 0_yumInstallCoreDeps.sh>
yumInstallCoreDeps () {
# <snippet-begin 0_yumInstallCoreDeps8.sh>
yumInstallCoreDeps8 () {
# Install the dependencies:
PHP_BASE="/etc/"
PHP_INI="/etc/php.ini"
@ -166,7 +166,7 @@ yumInstallCoreDeps () {
# cake has php baked in, thus we link to it if necessary.
[[ ! -e "/usr/bin/php" ]] && sudo ln -s /usr/bin/php74 /usr/bin/php
}
# <snippet-end 0_yumInstallCoreDeps.sh>
# <snippet-end 0_yumInstallCoreDeps8.sh>
```
```bash