22 lines
342 B
Bash
22 lines
342 B
Bash
#ModuleInstaller
|
|
phpmyadminver=4.9.0.1
|
|
OUTPUT='/dev/tty'
|
|
|
|
PKGM="apt"
|
|
PKGI="${PKGM} install -y"
|
|
|
|
PHPMyadmin=1
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
#Remove this when pushing to git
|
|
password=MyVerynicePa$$word1234
|
|
|
|
$PKGI gnupg curl
|
|
|
|
source preconf.sh
|
|
|
|
echo mysql-server >>/tmp/apt.list ##ForNow
|
|
cat /tmp/apt.list | xargs $PKGI
|
|
|
|
source conf.sh |