bubbles/python_modules/final_modules/__init__.py

23 lines
672 B
Python

"""
* SPDX-FileCopyrightText: 2023-2025 PeppermintOS Team
* (peppermintosteam@proton.me)
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Lets Expose the final functions modules. the final_modules
* Thes eare used to do ths following:
* 1. Rename the ISO
* 2. Create the checksums to include the PGP signing
* 3. Move the completed ISO tol the daily web location
* 4. Remove the Fusato folder as ell of the any older ISOs that
* May be in any nightly folders, to save space. It will only
* keep 1 days workd of an ISO
"""
from .finish_cleanup import (
make_check_sum, copy_iso_file,
copy_checksum,
kill_fusato, kill_old_iso, create_directories
)