mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-02-07 08:19:17 +00:00
cleanup
This commit is contained in:
parent
0815b75209
commit
e11a38ed3c
@ -58,7 +58,7 @@ header_info
|
||||
check_container_storage
|
||||
check_container_resources
|
||||
|
||||
if [[ ! -d /opt/firefly-iii ]]; then
|
||||
if [[ ! -d /opt/firefly ]]; then
|
||||
msg_error "No ${APP} Installation Found!"
|
||||
exit
|
||||
fi
|
||||
@ -69,25 +69,25 @@ check_container_resources
|
||||
msg_ok "Stopped Apache2"
|
||||
|
||||
msg_info "Updating ${APP} to v${RELEASE}"
|
||||
cp /opt/firefly-iii/.env /opt/.env
|
||||
cp -r /opt/firefly-iii/storage /opt/storage
|
||||
rm -rf /opt/firefly-iii
|
||||
cp /opt/firefly/.env /opt/.env
|
||||
cp -r /opt/firefly/storage /opt/storage
|
||||
rm -rf /opt/firefly
|
||||
cd /opt
|
||||
wget -q "https://github.com/firefly-iii/firefly-iii/releases/download/v${RELEASE}/FireflyIII-v${RELEASE}.tar.gz"
|
||||
mkdir -p /opt/firefly-iii
|
||||
tar -xzf FireflyIII-v${RELEASE}.tar.gz -C /opt/firefly-iii --exclude='storage'
|
||||
mv /opt/.env /opt/firefly-iii/.env
|
||||
mv /opt/storage /opt/firefly-iii/storage
|
||||
chown -R www-data:www-data /opt/firefly-iii
|
||||
chmod -R 775 /opt/firefly-iii/storage
|
||||
cd /opt/firefly-iii
|
||||
mkdir -p /opt/firefly
|
||||
tar -xzf FireflyIII-v${RELEASE}.tar.gz -C /opt/firefly --exclude='storage'
|
||||
mv /opt/.env /opt/firefly/.env
|
||||
mv /opt/storage /opt/firefly/storage
|
||||
chown -R www-data:www-data /opt/firefly
|
||||
chmod -R 775 /opt/firefly/storage
|
||||
cd /opt/firefly
|
||||
composer install --no-dev &>/dev/null
|
||||
php artisan migrate --seed &>/dev/null
|
||||
php artisan firefly-iii:decrypt-all &>/dev/null
|
||||
php artisan migrate --seed --force &>/dev/null
|
||||
php artisan firefly:decrypt-all &>/dev/null
|
||||
php artisan cache:clear &>/dev/null
|
||||
php artisan view:clear &>/dev/null
|
||||
php artisan firefly-iii:upgrade-database &>/dev/null
|
||||
php artisan firefly-iii:laravel-passport-keys &>/dev/null
|
||||
php artisan firefly:upgrade-database &>/dev/null
|
||||
php artisan firefly:laravel-passport-keys &>/dev/null
|
||||
echo "${RELEASE}" >"/opt/${APP}_version.txt" &>/dev/null
|
||||
msg_ok "Updated ${APP} to v${RELEASE}"
|
||||
|
||||
|
@ -53,31 +53,31 @@ msg_info "Installing Firefly III (Patience)"
|
||||
RELEASE=$(curl -s https://api.github.com/repos/firefly-iii/firefly-iii/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4)}')
|
||||
cd /opt
|
||||
wget -q "https://github.com/firefly-iii/firefly-iii/releases/download/v${RELEASE}/FireflyIII-v${RELEASE}.tar.gz"
|
||||
mkdir -p /opt/firefly-iii
|
||||
tar -xzf FireflyIII-v${RELEASE}.tar.gz -C /opt/firefly-iii
|
||||
chown -R www-data:www-data /opt/firefly-iii
|
||||
chmod -R 775 /opt/firefly-iii/storage
|
||||
cd /opt/firefly-iii
|
||||
mkdir -p /opt/firefly
|
||||
tar -xzf FireflyIII-v${RELEASE}.tar.gz -C /opt/firefly
|
||||
chown -R www-data:www-data /opt/firefly
|
||||
chmod -R 775 /opt/firefly/storage
|
||||
cd /opt/firefly
|
||||
cp .env.example .env
|
||||
sed -i "s/DB_HOST=.*/DB_HOST=localhost/" /opt/firefly-iii/.env
|
||||
sed -i "s/DB_PASSWORD=.*/DB_PASSWORD=$DB_PASS/" /opt/firefly-iii/.env
|
||||
sed -i "s/DB_HOST=.*/DB_HOST=localhost/" /opt/firefly/.env
|
||||
sed -i "s/DB_PASSWORD=.*/DB_PASSWORD=$DB_PASS/" /opt/firefly/.env
|
||||
echo "export COMPOSER_ALLOW_SUPERUSER=1" >> ~/.bashrc
|
||||
source ~/.bashrc
|
||||
$STD composer install --no-dev --no-plugins --no-interaction
|
||||
$STD php artisan firefly-iii:upgrade-database
|
||||
$STD php artisan firefly-iii:correct-database
|
||||
$STD php artisan firefly-iii:report-integrity
|
||||
$STD php artisan firefly-iii:laravel-passport-keys
|
||||
$STD php artisan firefly:upgrade-database
|
||||
$STD php artisan firefly:correct-database
|
||||
$STD php artisan firefly:report-integrity
|
||||
$STD php artisan firefly:laravel-passport-keys
|
||||
echo "${RELEASE}" >"/opt/${APPLICATION}_version.txt"
|
||||
msg_ok "Installed Firefly III"
|
||||
|
||||
msg_info "Creating Service"
|
||||
cat <<EOF >/etc/apache2/sites-available/firefly-iii.conf
|
||||
cat <<EOF >/etc/apache2/sites-available/firefly.conf
|
||||
<VirtualHost *:80>
|
||||
ServerAdmin webmaster@localhost
|
||||
DocumentRoot /opt/firefly-iii/public/
|
||||
DocumentRoot /opt/firefly/public/
|
||||
|
||||
<Directory /opt/firefly-iii/public>
|
||||
<Directory /opt/firefly/public>
|
||||
Options FollowSymLinks
|
||||
AllowOverride All
|
||||
Require all granted
|
||||
@ -90,7 +90,7 @@ cat <<EOF >/etc/apache2/sites-available/firefly-iii.conf
|
||||
EOF
|
||||
$STD a2enmod php8.3
|
||||
$STD a2enmod rewrite
|
||||
$STD a2ensite firefly-iii.conf
|
||||
$STD a2ensite firefly.conf
|
||||
$STD a2dissite 000-default.conf
|
||||
$STD systemctl reload apache2
|
||||
msg_ok "Created Service"
|
||||
|
Loading…
Reference in New Issue
Block a user