mirror of
https://github.com/openvk/openvk
synced 2024-11-14 19:19:14 +03:00
Update vagrantfile (i'm still not sure it works)
This commit is contained in:
parent
595a7ba843
commit
a8815a2402
2 changed files with 48 additions and 33 deletions
16
Vagrantfile
vendored
16
Vagrantfile
vendored
|
@ -1,16 +1,22 @@
|
||||||
# -*- mode: ruby -*-
|
# -*- mode: ruby -*-
|
||||||
# vi: set ft=ruby :
|
# vi: set ft=ruby :
|
||||||
Vagrant.configure("2") do |config|
|
Vagrant.configure("2") do |config|
|
||||||
config.vm.box = "freebsd/FreeBSD-12.1-STABLE"
|
config.vm.box = "freebsd/FreeBSD-13.1-RC2"
|
||||||
|
config.vm.box_version = "2022.04.07"
|
||||||
|
|
||||||
config.vm.network "forwarded_port", guest: 80, host: 4000
|
config.vm.network "forwarded_port", guest: 80, host: 4000
|
||||||
|
|
||||||
config.vm.synced_folder ".", "/.ovk_release"
|
|
||||||
|
|
||||||
config.vm.provider "virtualbox" do |vb|
|
config.vm.provider "virtualbox" do |vb|
|
||||||
vb.gui = true
|
vb.gui = true
|
||||||
vb.memory = "1024"
|
vb.cpus = 4
|
||||||
|
vb.memory = "1568"
|
||||||
end
|
end
|
||||||
|
|
||||||
config.vm.provision "shell", inline: "/bin/tcsh /.ovk_release/install/automated/freebsd-12/install"
|
config.vm.provider "vmware_workstation" do |vwx|
|
||||||
|
vwx.gui = true
|
||||||
|
vwx.vmx["memsize"] = "1568"
|
||||||
|
vwx.vmx["numvcpus"] = "4"
|
||||||
|
end
|
||||||
|
|
||||||
|
config.vm.provision "shell", inline: "/bin/tcsh /.ovk_release/install/automated/freebsd-13/install"
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
#!/bin/tcsh
|
#!/bin/tcsh
|
||||||
|
|
||||||
##########################################################################################################\
|
##########################################################################################################\
|
||||||
# OpenVK AutoInstallation Script for FreeBSD 12 # /( )` #
|
# OpenVK AutoInstallation Script for FreeBSD 13 # /( )` #
|
||||||
# ------------------------------------------------------------- # \ \___ / | #
|
# ------------------------------------------------------------- # \ \___ / | #
|
||||||
# # /- _ `-/ ' #
|
# # /- _ `-/ ' #
|
||||||
# This script installs OpenVK on an empty FreeBSD 12 box. # (/\/ \ \ /\ #
|
# This script installs OpenVK on an empty FreeBSD 13 box. # (/\/ \ \ /\ #
|
||||||
# Copyright (c) 2020 OpenVK contributors # / / | ` \ #
|
# Copyright (c) 2020 OpenVK contributors # / / | ` \ #
|
||||||
# ------------------------------------------------------------- # O O ) / | #
|
# ------------------------------------------------------------- # O O ) / | #
|
||||||
# # `-^--'`< ' #
|
# # `-^--'`< ' #
|
||||||
|
@ -27,28 +27,27 @@ if ($? == 1) then
|
||||||
endif
|
endif
|
||||||
|
|
||||||
set osVer = `freebsd-version -r`
|
set osVer = `freebsd-version -r`
|
||||||
if ($osVer !~ "12.*") then
|
if ($osVer !~ "13.*") then
|
||||||
echo "Fatal Error: This installation supports only FreeBSD 12, but you have FreeBSD $osVer installed."
|
echo "Fatal Error: This installation supports only FreeBSD 13, but you have FreeBSD $osVer installed."
|
||||||
exit 201
|
exit 201
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Update system
|
cd /tmp
|
||||||
pkg update
|
mkdir ovkinstall
|
||||||
pkg upgrade
|
cd ovkinstall
|
||||||
|
|
||||||
# Install programming languages and Git
|
# Install required packages
|
||||||
yes | pkg install git
|
yes | pkg install git php74 mod_php74 php74-gd php74-mbstring php74-iconv php74-json php74-sodium php74-calendar php74-curl php74-brotli php74-zip php74-openssl php74-ctype php74-dom php74-fileinfo php74-PDO php74-pdo_mysql php74-sqlite3 php74-pdo_sqlite php74-sockets php74-tokenizer php74-opcache php74-posix php74-pecl-yaml php74-phar php74-filter php74-zlib php74-session php74-simplexml node www/npm mysql80-server mysql80-client ffmpeg
|
||||||
yes | pkg install php74
|
rehash
|
||||||
yes | pkg install mod_php74 # will also install Apache2.4
|
|
||||||
yes | pkg install php74-gd php74-mbstring php74-iconv php74-json php74-sodium php74-calendar php74-curl php74-brotli php74-zip php74-openssl php74-ctype php74-dom php74-fileinfo php74-PDO php74-pdo_mysql php74-sqlite3 php74-pdo_sqlite php74-sockets php74-tokenizer php74-opcache php74-posix php74-pecl-yaml php74-phar php74-filter php74-zlib php74-session
|
# Install package managers
|
||||||
|
npm i -g yarn
|
||||||
curl -LO https://getcomposer.org/installer
|
curl -LO https://getcomposer.org/installer
|
||||||
php ./installer --install-dir=/bin --filename=composer --preview
|
php ./installer --install-dir=/bin --filename=composer --preview
|
||||||
rm -f ./installer
|
rm -f ./installer
|
||||||
yes | pkg install node npm
|
rehash
|
||||||
npm i -g yarn
|
|
||||||
|
|
||||||
# Download OVK distro
|
# Download OVK distro
|
||||||
cd /tmp
|
|
||||||
git clone https://github.com/openvk/openvk.git
|
git clone https://github.com/openvk/openvk.git
|
||||||
|
|
||||||
# Install chandler
|
# Install chandler
|
||||||
|
@ -58,7 +57,7 @@ git clone https://github.com/openvk/chandler.git
|
||||||
|
|
||||||
cd chandler
|
cd chandler
|
||||||
yes | composer install
|
yes | composer install
|
||||||
cp /tmp/openvk/install/automated/common/chandler.yml /opt/chandler/chandler.yml
|
cp /tmp/ovkinstall/openvk/install/automated/common/chandler.yml /opt/chandler/chandler.yml
|
||||||
chown -R www: .
|
chown -R www: .
|
||||||
chmod -R 777 .
|
chmod -R 777 .
|
||||||
|
|
||||||
|
@ -75,7 +74,7 @@ cd /opt/chandler
|
||||||
ln -s /opt/chandler/extensions/available/commitcaptcha /opt/chandler/extensions/enabled/commitcaptcha
|
ln -s /opt/chandler/extensions/available/commitcaptcha /opt/chandler/extensions/enabled/commitcaptcha
|
||||||
|
|
||||||
# Install OpenVK
|
# Install OpenVK
|
||||||
cp -r /tmp/openvk /opt/chandler/extensions/available/openvk
|
cp -r /tmp/ovkinstall/openvk /opt/chandler/extensions/available/openvk
|
||||||
ln -s /opt/chandler/extensions/available/openvk /opt/chandler/extensions/enabled/openvk
|
ln -s /opt/chandler/extensions/available/openvk /opt/chandler/extensions/enabled/openvk
|
||||||
|
|
||||||
cd ./extensions/available/openvk
|
cd ./extensions/available/openvk
|
||||||
|
@ -84,36 +83,46 @@ yes | composer install
|
||||||
cd Web/static/js
|
cd Web/static/js
|
||||||
yarn install
|
yarn install
|
||||||
|
|
||||||
cp /tmp/openvk/install/automated/common/openvk.yml /opt/chandler/extensions/available/openvk/openvk.yml
|
cp /tmp/ovkinstall/openvk/install/automated/common/openvk.template.yml /opt/chandler/extensions/available/openvk/openvk.yml
|
||||||
|
|
||||||
cd ../../../
|
cd ../../../
|
||||||
chown -R www: .
|
chown -R www: .
|
||||||
chmod -R 777 .
|
chmod -R 777 .
|
||||||
|
|
||||||
# Install MySQL
|
# Setup databases
|
||||||
yes | pkg install mariadb105-server mariadb105-client
|
|
||||||
sysrc mysql_enable="yes"
|
sysrc mysql_enable="yes"
|
||||||
service mysql-server start
|
service mysql-server start
|
||||||
nohup /usr/local/libexec/mariadbd >& /dev/null & # service mysql-server start doesn't work
|
|
||||||
sleep 15
|
|
||||||
|
|
||||||
# Mount databases
|
|
||||||
cd /opt/chandler
|
cd /opt/chandler
|
||||||
mysql < /tmp/openvk/install/automated/common/mk_db.sql
|
mysql < /tmp/ovkinstall/openvk/install/automated/common/mk_db.sql
|
||||||
mysql -p'justMonika' openvk < install/init-db.sql
|
mysql -p'justMonika' openvk < install/init-db.sql
|
||||||
mysql -p'justMonika' openvk < /tmp/openvk/install/init-static-db.sql
|
mysql -p'justMonika' openvk < /tmp/ovkinstall/openvk/install/init-static-db.sql
|
||||||
mysql -p'justMonika' openvk-eventdb < /tmp/openvk/install/init-event-db.sql
|
mysql -p'justMonika' openvk-eventdb < /tmp/ovkinstall/openvk/install/init-event-db.sql
|
||||||
|
|
||||||
|
cd /tmp/ovkinstall/openvk/install/sqls
|
||||||
|
foreach migration (*.sql)
|
||||||
|
mysql -p'justMonika' openvk < $migration
|
||||||
|
end
|
||||||
|
|
||||||
|
# Change database settings
|
||||||
|
echo "ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'justMonika'; FLUSH PRIVILEGES;" | mysql -p'justMonika';
|
||||||
|
|
||||||
|
sed -i'' -e 's:/var/run/mysql/mysql.sock:/tmp/mysql.sock:' /opt/chandler/chandler.yml
|
||||||
|
sed -i'' -e 's:/var/run/mysql/mysql.sock:/tmp/mysql.sock:' /opt/chandler/extensions/available/openvk/openvk.yml
|
||||||
|
|
||||||
# Alias folders
|
# Alias folders
|
||||||
rm -rf /usr/local/www/apache24/data
|
rm -rf /usr/local/www/apache24/data
|
||||||
ln -s /opt/chandler/htdocs /usr/local/www/apache24/data
|
ln -s /opt/chandler/htdocs /usr/local/www/apache24/data
|
||||||
|
|
||||||
# Configure Apache
|
# Configure Apache
|
||||||
cp /tmp/openvk/install/automated/common/httpd.conf /usr/local/etc/apache24/httpd.conf
|
cp /tmp/ovkinstall/openvk/install/automated/common/httpd.conf /usr/local/etc/apache24/httpd.conf
|
||||||
cp /tmp/openvk/install/automated/common/httpd-php.conf /usr/local/etc/apache24/Includes/php.conf
|
cp /tmp/ovkinstall/openvk/install/automated/common/httpd-php.conf /usr/local/etc/apache24/Includes/php.conf
|
||||||
sysrc apache24_enable="yes"
|
sysrc apache24_enable="yes"
|
||||||
service apache24 start
|
service apache24 start
|
||||||
|
|
||||||
|
# Cleanup
|
||||||
|
rm -rf /opt/ovkinstall
|
||||||
|
|
||||||
# Enjoy
|
# Enjoy
|
||||||
echo "~================= OpenVK 2 Installed =================~"
|
echo "~================= OpenVK 2 Installed =================~"
|
||||||
echo " Use it: http://localhost:80/ "
|
echo " Use it: http://localhost:80/ "
|
Loading…
Reference in a new issue