This commit is contained in:
Zsolt Ero
2024-09-10 23:47:25 +02:00
parent 0ec790d597
commit f48ab6f4a6
7 changed files with 49 additions and 13 deletions

View File

@@ -8,7 +8,7 @@ from http_host_lib.btrfs import (
download_area_version,
get_versions_for_area,
)
from http_host_lib.mount import auto_mount_unmount
from http_host_lib.mount import auto_mount
from http_host_lib.nginx import write_nginx_config
from http_host_lib.sync import auto_clean_btrfs, full_sync
from http_host_lib.versions import fetch_version_files
@@ -57,7 +57,7 @@ def mount():
When finished, /mnt/ofm dir will have all the present tiles.btrfs files mounted in a read-only way.
"""
auto_mount_unmount()
auto_mount()
@cli.command(name='fetch-versions')