[Earl] Board Active Cli

[Earl] Board Active Cli 1.0.0a

没有下载权限
XF 兼容性
  1. 2.2.x
摘要
Automatically control your board with this add-on via command line interface for seamless database backup automation. Toggle "Board active" switch using shell scripts and cron jobs for efficient maintenance tasks.
This add-on allows you to turn your board on and off with command line interface.

So you can use this option to flip the "Board active" switch when you preparing to make a database backup and flip it back on when done.

You can automate the whole backup process by making a shell script like this and adding it to the crontab



Bash:

#!/usr/bin/env bash

############################################################################
# #
# SET VARS #
# #
############################################################################

vhost_path=/home/nginx/domains/yourdomain.com
public_doc_dir=$vhost_path/public
random_string=$(cat /dev/random | tr -dc '0-9' | fold -w 256 | head --bytes 7)
backup_dir=$public_doc_dir/backups/$(date +"%d-%m-%Y")/$random_string
elastic_snapshot_repo=/home/es_repo

dbuser=$(grep username $public_doc_dir/src/config.php | awk -F\' '{ print $6 }')
dbpass=$(grep password $public_doc_dir/src/config.php | awk -F\' '{ print $6 }')
dbname=$(grep dbname $public_doc_dir/src/config.php | awk -F\' '{ print $6 }')

############################################################################
# #
# BACKUP PROCESS #
# #
############################################################################

mkdir -p $backup_dir
# board active switch turns to off
/bin/env php $public_doc_dir/cmd.php xf:board-active off -m "Sorry for the inconvenience but we're performing some maintenance at the moment. we'll be back online shortly!"
mysqldump --opt --default-character-set=utf8mb4 -u$dbuser -p$dbpass $dbname > db$(date +"%d-%m-%Y").sql
....
...
..
# Board active switch turns to on and message sets back to the default
/bin/env php $public_doc_dir/cmd.php xf:board-active off -m "Sorry, we're currently unavailable. Please check back later.."
作者
anne51
浏览
465
扩展类型
zip
文件大小
6.7 KB
首次发布
上次更新
评分 0.00 星 0 个评分
链接失效了吗? 发送消息 给 NP 团队,我们会尽快为您处理!
支持开发者 如果您对测试满意或项目已成功盈利,可点击「更多信息」按钮,通过购买来支持开发者!

来自 anne51 的更多资源

Evne - 创意作品集 WordPress 主题 A
为敢于创新的创意人士,Evne 让你轻松创建自己的现代创意档案!
Hecxa – Creative Design Agency FSE WordPress Theme A
Hecxa is a modern WordPress theme designed for Design Firm, Design Studio, Graphic Designer etc
Carafity - 竹手作商店 WooCommerce 主题 A
设计帮助你创建一个用于手工竹制品的精美在线商店。

相似的资源

[AndyB]  Remove click to expand A
Removes click to expand links in approval queue.
浏览
594
已更新
[OzzModz] Copy Message to Clipboard A
Adds a copy to clipboard button to messages.
浏览
424
已更新
 /  复制到剪贴板 A
/ 复制到剪贴板 2.0.0 Patch Level 2
添加代码块中的复制到剪贴板功能。
浏览
258
已更新
返回
顶部