1 Star 0 Fork 54

Ryouj/kasini3000

forked from chuanjiao10/kasini3000 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
bfmp备份并清空多进程用户库.ps1 1.84 KB
一键复制 编辑 原始数据 按行查看 历史
#建议保存编码为:bom头 + utf8
if ($env:LANG -eq 'zh_CN.UTF-8')
{
$msg = @'
确认:在所有win、linux主控机上,任务计划引擎已经关闭。
确认:已经没有任何进程写入user_crontab_mp.sqlite3?
按回车继续,按ctrl + c 退出。
'@
Write-Warning $msg
}
else
{
$msg = @'
Confirmation: The task scheduling engine has been shut down on all Windows and Linux mainframes.
Confirm: No processes have written to user_crontab_mp.sqlite3?
Press enter to continue, press ctrl+c to exit.
'@
Write-Warning $msg
}
Pause
Write-Warning '翻转【多进程任务计划库】 开始'
if ( ($IsWindows -eq $True) -or ($PSVersionTable.psversion.major -lt 6) ) #win
{
& 'c:\ProgramData\kasini3000\0k_source.ps1'
}
if ($IsLinux -eq $True)
{
& '/etc/kasini3000/0k_source.ps1'
}
$今天日期 = Get-Date -Format 'yyyyMMdd'
$备份库目录加日期 = "${global:kasini3000_data_path}/cmdb/${今天日期}"
$目的sqlite数据库文件名 = "${备份库目录加日期}/user_crontab_mp.sqlite3"
if (Test-Path -LiteralPath $目的sqlite数据库文件名)
{
Write-Error "错误:今天已经备份库。返回码4"
exit 4
}
mkdir $备份库目录加日期
$源sqlite数据库文件名 = "${global:kasini3000_data_path}/cmdb/" + 'user_crontab_mp.sqlite3'
if (Test-Path -LiteralPath $源sqlite数据库文件名)
{
Copy-Item -LiteralPath $源sqlite数据库文件名 -Destination $备份库目录加日期
Start-Sleep -Seconds 1
& "${PSScriptRoot}/cmdb/invoke_进程级别_用户库.ps1" -sqlite_sql语句 'DELETE FROM `u任务表`; VACUUM;'
#这里会自动新建新的库。
}
else
{
Write-Error "错误:未找到需要备份的库。返回码1"
exit 1
}
Write-Warning 'from'
Write-Warning $源sqlite数据库文件名
Write-Warning 'to'
Write-Warning $目的sqlite数据库文件名
Write-Warning '翻转【多进程任务计划库】 结束'
exit 0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PowerShell
1
https://gitee.com/ryouj/kasini3000.git
[email protected]:ryouj/kasini3000.git
ryouj
kasini3000
kasini3000
master

搜索帮助