Skip to content

Commit fa339e9

Browse files
committed
Minor Changes
Fixed typo and added kernel update script to options.
1 parent c45c57c commit fa339e9

3 files changed

Lines changed: 6 additions & 11 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ wget https://raw.githubusercontent.com/EngineScript/EngineScript/master/setup.sh
2828
### Step 2 - Edit Options File
2929
After the initial setup script has run, you'll need to alter the install options file.
3030

31-
First, retrieve your Cloudflare Global API Key at **https://dash.cloudflare.com/profile/api-tokens**. Then you'll need to edit the configuration file at **/home/EngineScript/enginescript-install-options.txt**. Fill this out completely, making sure to change all options say `PLACEHOLDER`.
31+
First, retrieve your Cloudflare Global API Key at **https://dash.cloudflare.com/profile/api-tokens**. Then you'll need to edit the configuration file at **/home/EngineScript/enginescript-install-options.txt**. Fill this out completely, making sure to change all variables that say `PLACEHOLDER`.
3232

3333
Run the following command:
3434
```shell

enginescript-install.sh

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -311,15 +311,6 @@ if [ "${SFL}" = 1 ];
311311
echo "SFL=1" >> /home/EngineScript/install-log.txt
312312
fi
313313

314-
# Kernel Update
315-
#if [ "${KERNEL_UPDATE}" = 1 ];
316-
# then
317-
# echo "KERNEL UPDATE script has already run."
318-
# else
319-
# /usr/local/bin/enginescript/scripts/install/kernel/kernel-update.sh
320-
# echo "KERNEL_UPDATE=1" >> /home/EngineScript/install-log.txt
321-
#fi
322-
323314
# NTP
324315
if [ "${NTP}" = 1 ];
325316
then

scripts/menu/update-menu.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,18 @@ while true
3333
echo ""
3434

3535
PS3='Please enter your choice: '
36-
options=("Update EngineScript" "Update MariaDB" "Update Nginx" "Update OpenSSL" "Update PHP" "Update Server Tools" "Update Ubuntu Distribution (apt full-upgrade)" "Update Ubuntu Software (apt upgrade)" "Exit Update Software Menu")
36+
options=("Update EngineScript" "Update Kernel (experimental)" "Update MariaDB" "Update Nginx" "Update OpenSSL" "Update PHP" "Update Server Tools" "Update Ubuntu Distribution (apt full-upgrade)" "Update Ubuntu Software (apt upgrade)" "Exit Update Software Menu")
3737
select opt in "${options[@]}"
3838
do
3939
case $opt in
4040
"Update EngineScript")
4141
/usr/local/bin/enginescript/scripts/update/enginescript-update.sh
4242
break
4343
;;
44+
"Update Kernel (experimental)")
45+
/usr/local/bin/enginescript/scripts/install/kernel/kernel-update.sh
46+
break
47+
;;
4448
"Update MariaDB")
4549
echo "Currently disabled as it's not needed."
4650
sleep 5

0 commit comments

Comments
 (0)