41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
#!/bin/bash
|
|
## ps : 2021-04-01 15:25
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
GITUSR=gitgsb
|
|
GITPRJ=gsb2021
|
|
apt update && apt upgrade
|
|
apt install -y apache2 git
|
|
STOREREP="/var/www/html/gsbstore"
|
|
[[ -d "${STOREREP}" ]]|| mkdir "${STOREREP}"
|
|
|
|
(cat <<EOT > "${STOREREP}/getall"
|
|
|
|
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
GLPIREL=9.4.5
|
|
wget -nc https://github.com/glpi-project/glpi/releases/download/\${GLPIREL}/glpi-\${GLPIREL}.tgz
|
|
|
|
FIREL=9.4+2.4
|
|
wget -nc -O fusioninventory-glpi\${FIREL}.tag.gz https://github.com/fusioninventory/fusioninventory-for-glpi/archive/glpi\${FIREL}.tar.gz
|
|
#https://github.com/fusioninventory/fusioninventory-for-glpi/archive/glpi9.4+2.4.tar.g
|
|
|
|
FIAGREL=2.5.2
|
|
wget -nc https://github.com/fusioninventory/fusioninventory-agent/releases/download/\${FIAGREL}/fusioninventory-agent_windows-x64_\${FIAGREL}.exe
|
|
|
|
wget -nc https://github.com/fusioninventory/fusioninventory-agent/releases/download/\$FIAGREL/fusioninventory-agent_windows-x86_\${FIAGREL}.exe
|
|
|
|
FOGREL=1.5.7
|
|
wget -nc https://github.com/FOGProject/fogproject/archive/\${FOGREL}.tar.gz -O fogproject-\${FOGREL}.tar.gz
|
|
|
|
wget -nc https://fr.wordpress.org/wordpress-5.3.2-fr_FR.tar.gz
|
|
|
|
EOT
|
|
)
|
|
cat /var/www/html/gsbstore/getall
|
|
|