diff --git a/games/factorio/installFactorio.sh b/games/factorio/installFactorio.sh deleted file mode 100644 index e0d639a..0000000 --- a/games/factorio/installFactorio.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -cd -sudo apt update -sudo apt insatll neofetch -y \ No newline at end of file diff --git a/games/minecraftjava/installMinecraftJava.sh b/games/minecraftjava/installMinecraftJava.sh deleted file mode 100644 index 708c9ff..0000000 --- a/games/minecraftjava/installMinecraftJava.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -# Sudo code/actual code for installing MCJava server - -#add mcserver user requires sudo, requires password to be typed -sudo adduser mcserver - -#add new user to sudo group for install to automate the process more -sudo usermod -aG sudo mcserver - -#login as mcserver user, requires password to be typed -su - mcserver - -#Installs LinuxGSM and installs minecraft java server. -wget -O linuxgsm.sh https://linuxgsm.sh && chmod +x linuxgsm.sh && bash linuxgsm.sh mcserver - -# Installs game dependencies -sudo nala install bc binutils bsdmainutils bzip2 ca-certificates cpio curl distro-info file gzip hostname jq lib32gcc-s1 lib32stdc++6 netcat-openbsd openjdk-17-jre python3 tar tmux unzip util-linux uuid-runtime wget xz-utils -y - -#Installs -./mcserver install \ No newline at end of file diff --git a/games/palworlds/installPalworlds.sh b/games/palworlds/installPalworlds.sh deleted file mode 100644 index ba6a00b..0000000 --- a/games/palworlds/installPalworlds.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -# the goal of this is to install the dependednces from the LinuxGSM game server game you want to intall, from the github pages of LinuxGSM, this way if there are update to the dependencies they will be taken care of with out manual intervention of WebGSM. -# Path to the CSV file -CSV_FILE="https://github.com/GameServerManagers/LinuxGSM/blob/master/lgsm/data/debian-12.csv" - -# Read records from the CSV file (excluding the header) -while read -r line; do - # Extract the first column (package name) - package_name=$(echo "$line" | cut -d ',' -f 1) - - # Add your logic here to handle the package name - # For now, let's just print it - echo "Package name: $package_name" -done < <(tail -n +2 <(curl -s "$CSV_FILE")) - -# Note: The 'curl -s' command fetches the CSV file content -# The 'tail -n +2' command skips the header line -# The 'cut -d ',' -f 1' command extracts the first column