mirror of
https://github.com/TeamPGM/PagerMaid-Pyro.git
synced 2024-11-23 13:16:04 +00:00
🚑 Fix docker install lock
This commit is contained in:
parent
5b49941eed
commit
81f895ecce
@ -1,14 +1,25 @@
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
def rename(old: Path):
|
||||
if old.exists():
|
||||
old_file_name = old.name
|
||||
new = Path("data") / old_file_name
|
||||
if new.exists():
|
||||
new.unlink()
|
||||
old.rename(new)
|
||||
|
||||
|
||||
# move file
|
||||
# session
|
||||
session = Path("pagermaid.session")
|
||||
if session.exists():
|
||||
session.rename("data/pagermaid.session")
|
||||
rename(session)
|
||||
# config
|
||||
config = Path("config.yml")
|
||||
if config.exists():
|
||||
config.rename("data/config.yml")
|
||||
rename(config)
|
||||
# docker
|
||||
docker = Path("install.lock")
|
||||
rename(docker)
|
||||
# delete file
|
||||
# log
|
||||
log = Path("pagermaid.log.txt")
|
||||
|
@ -57,6 +57,9 @@ login () {
|
||||
|
||||
main () {
|
||||
cd /pagermaid/workdir || exit
|
||||
if [ -f "/pagermaid/workdir/install.lock" ]; then
|
||||
echo "Hello world!" > /pagermaid/workdir/data/install.lock
|
||||
fi
|
||||
if [ ! -s "/pagermaid/workdir/data/install.lock" ]; then
|
||||
welcome
|
||||
configure
|
||||
|
Loading…
Reference in New Issue
Block a user