mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-21 23:20:24 +00:00
26 lines
894 B
Bash
Executable file
26 lines
894 B
Bash
Executable file
# Compile ubuntu-20.04 installers
|
|
|
|
# get content from file
|
|
INSTALL_BASE=$(cat ubuntu-20.04/install-partial/install_base.sh)
|
|
DOWNLOAD_WEB=$(cat ubuntu-20.04/install-partial/download_web.sh)
|
|
INSTALL_WEB=$(cat ubuntu-20.04/install-partial/install_web.sh)
|
|
|
|
# create installer
|
|
rm -rf ubuntu-20.04/install.sh
|
|
echo "$INSTALL_BASE" >> ubuntu-20.04/install.sh
|
|
echo "$DOWNLOAD_WEB" >> ubuntu-20.04/install.sh
|
|
echo "$INSTALL_WEB" >> ubuntu-20.04/install.sh
|
|
|
|
|
|
# Compile ubuntu-22.04 installers
|
|
|
|
# get content from file
|
|
INSTALL_BASE=$(cat ubuntu-22.04/install-partial/install_base.sh)
|
|
DOWNLOAD_WEB=$(cat ubuntu-22.04/install-partial/download_web.sh)
|
|
INSTALL_WEB=$(cat ubuntu-22.04/install-partial/install_web.sh)
|
|
|
|
# create installer
|
|
rm -rf ubuntu-22.04/install.sh
|
|
echo "$INSTALL_BASE" >> ubuntu-22.04/install.sh
|
|
echo "$DOWNLOAD_WEB" >> ubuntu-22.04/install.sh
|
|
echo "$INSTALL_WEB" >> ubuntu-22.04/install.sh
|