2023-08-24 06:16:56 +00:00
|
|
|
"""
|
|
|
|
* Author: "PeppermintOS Team(peppermintosteam@proton.me)
|
|
|
|
*
|
|
|
|
* License: SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*
|
|
|
|
* Set the infrastructure for bubbles to begin the ISO build
|
2023-11-15 02:01:16 -01:00
|
|
|
* This copies needed config files to the binary and chroot
|
|
|
|
* locations, based on the build base and architecture
|
2023-08-24 06:16:56 +00:00
|
|
|
"""
|
|
|
|
import os
|
|
|
|
import collections
|
|
|
|
from pathlib import Path
|
|
|
|
import shutil
|
2023-09-06 13:24:42 +00:00
|
|
|
import logging
|
2023-12-12 03:23:10 -01:00
|
|
|
import conf
|
|
|
|
|
2023-08-24 06:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Public Variables used in the classes
|
|
|
|
BSTRING_ISO_CONFIGS = '~/bubbles/iso_configs'
|
|
|
|
HOME_FOLDER = str(Path(BSTRING_ISO_CONFIGS).expanduser())
|
|
|
|
WPCHROOT = "/fusato/config/includes.chroot"
|
2024-04-12 11:23:24 +00:00
|
|
|
WPINSTALLER = "/fusato/config/includes.installer"
|
2023-08-27 07:58:28 +00:00
|
|
|
BINARYPTH = "/fusato/config/includes.binary"
|
2023-08-24 06:16:56 +00:00
|
|
|
BOOTSTRAP = "/fusato/config/includes.bootstrap"
|
|
|
|
FUSATOCONFIG = "/fusato/config"
|
|
|
|
|
2023-09-06 13:24:42 +00:00
|
|
|
# Set up the logging format
|
|
|
|
logger = logging.getLogger()
|
|
|
|
MSG_COPY = "Copying - "
|
|
|
|
MSG_FIN = "Finished - "
|
|
|
|
|
|
|
|
|
2023-09-22 04:54:19 +00:00
|
|
|
class Archive:
|
|
|
|
"""
|
2023-09-22 11:16:52 +00:00
|
|
|
Copy the multimedia to the ARCHIVES folder Depending on
|
2023-09-22 04:54:19 +00:00
|
|
|
the architecture it will, copy folders as needed
|
|
|
|
"""
|
|
|
|
def __init__(self,sbase,sarch):
|
|
|
|
logger.info("Copy Archive")
|
|
|
|
self.sbase = sbase
|
|
|
|
self.sarch = sarch
|
2023-09-22 11:27:43 +00:00
|
|
|
src_archive = ('/multimedia/' + self.sbase + self.sarch,)
|
2023-09-22 11:54:48 +00:00
|
|
|
des_archive =('/archives',)
|
2023-09-22 04:54:19 +00:00
|
|
|
# Archives Folders.
|
|
|
|
archive_src_q = collections.deque(src_archive)
|
|
|
|
archive_des_q = collections.deque(des_archive)
|
|
|
|
archive_size_q = len(archive_src_q)
|
2023-09-22 10:25:06 +00:00
|
|
|
for size_length in range(archive_size_q):
|
2023-09-22 04:54:19 +00:00
|
|
|
source = archive_src_q.popleft()
|
|
|
|
des = archive_des_q.popleft()
|
|
|
|
logger.info(MSG_COPY + HOME_FOLDER + source)
|
|
|
|
shutil.copytree(HOME_FOLDER + source,
|
2023-09-22 11:54:48 +00:00
|
|
|
HOME_FOLDER + FUSATOCONFIG + des,
|
2023-09-22 04:54:19 +00:00
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
2023-09-22 11:54:48 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + FUSATOCONFIG + des)
|
2023-09-22 04:54:19 +00:00
|
|
|
|
2024-06-10 07:12:16 +00:00
|
|
|
|
2024-05-25 11:06:14 +00:00
|
|
|
class ChrootInstallerFiles:
|
|
|
|
"""
|
|
|
|
Copies all installer folders to CHROOT depending on the base.
|
|
|
|
"""
|
|
|
|
ALLOWED_BASES = {"deb", "dev", "debld", "devld"}
|
|
|
|
def __init__(self, base, sarch=None):
|
|
|
|
self.base = base
|
|
|
|
self.sarch = sarch
|
|
|
|
if self.base not in self.ALLOWED_BASES:
|
|
|
|
logger.warning(f"Base '{self.base}' is not allowed. Skipping.")
|
|
|
|
return
|
|
|
|
logger.info(f"Copy Installer Files for base: {self.base}")
|
|
|
|
calamares_path = '/calamares_settings/'
|
|
|
|
self.src_paths = (
|
|
|
|
f'{calamares_path}{self.base}/settings/settings.conf',
|
|
|
|
f'{calamares_path}{self.base}/conf/modules/',
|
|
|
|
f'{calamares_path}{self.base}/sources/sources-final',
|
|
|
|
f'{calamares_path}{self.base}/sources/sources-media',
|
|
|
|
f'{calamares_path}{self.base}/scripts/bootloader-config',
|
|
|
|
f'{calamares_path}{self.base}/scripts/update-system',
|
|
|
|
f'{calamares_path}{self.base}/scripts/grub-defaults',
|
|
|
|
f'{calamares_path}{self.base}/scripts/add-calamares-desktop-icon',
|
|
|
|
f'{calamares_path}{self.base}/scripts/install-peppermint',
|
|
|
|
f'{calamares_path}{self.base}/modules/',
|
|
|
|
f'{calamares_path}{self.base}/branding/peppermint/',
|
|
|
|
f'{calamares_path}{self.base}/schemas/96_calamares-settings-debian.gschema.override/',
|
|
|
|
f'{calamares_path}{self.base}/applications/calamares-install-peppermint.desktop'
|
|
|
|
)
|
|
|
|
self.des_paths = (
|
|
|
|
'/etc/calamares/',
|
|
|
|
'/etc/calamares/',
|
|
|
|
'/usr/sbin/',
|
|
|
|
'/usr/sbin/',
|
|
|
|
'/usr/sbin/',
|
|
|
|
'/usr/sbin/',
|
|
|
|
'/usr/sbin/',
|
|
|
|
'/usr/bin/',
|
|
|
|
'/usr/bin/',
|
|
|
|
'/usr/lib/calamares/',
|
|
|
|
'/etc/calamares/branding/',
|
|
|
|
'/usr/share/glib-2.0/schemas/',
|
|
|
|
'/usr/share/applications/'
|
|
|
|
)
|
|
|
|
self.copy_files()
|
|
|
|
|
2024-06-19 07:04:00 +00:00
|
|
|
|
2024-05-25 11:06:14 +00:00
|
|
|
def copy_files(self):
|
2024-06-19 07:04:00 +00:00
|
|
|
""" Ensure destination directories exist before copying"""
|
2024-05-25 11:06:14 +00:00
|
|
|
for des in self.des_paths:
|
|
|
|
full_des_path = os.path.join(HOME_FOLDER, WPCHROOT.strip('/'), des.strip('/'))
|
|
|
|
try:
|
|
|
|
os.makedirs(full_des_path, exist_ok=True)
|
|
|
|
logger.info(f"Ensured directory exists: {full_des_path}")
|
|
|
|
except Exception as e:
|
|
|
|
logger.error(f"Error creating directory {full_des_path}: {e}")
|
|
|
|
src_q = collections.deque(self.src_paths)
|
|
|
|
des_q = collections.deque(self.des_paths)
|
|
|
|
size_q = len(src_q)
|
|
|
|
for _ in range(size_q):
|
|
|
|
source = src_q.popleft()
|
|
|
|
des = des_q.popleft()
|
|
|
|
full_src_path = os.path.join(HOME_FOLDER, source.strip('/'))
|
2024-06-19 07:04:00 +00:00
|
|
|
full_des_path = os.path.join(HOME_FOLDER,
|
|
|
|
WPCHROOT.strip('/'), des.strip('/')
|
|
|
|
)
|
2024-05-25 11:06:14 +00:00
|
|
|
logger.info(MSG_COPY + full_src_path)
|
|
|
|
try:
|
|
|
|
if os.path.exists(full_src_path):
|
|
|
|
if os.path.isdir(full_src_path):
|
2024-06-19 07:04:00 +00:00
|
|
|
shutil.copytree(full_src_path,
|
|
|
|
os.path.join(full_des_path,
|
|
|
|
os.path.basename(full_src_path)),
|
|
|
|
dirs_exist_ok=True
|
|
|
|
)
|
2024-05-25 11:06:14 +00:00
|
|
|
else:
|
|
|
|
shutil.copy(full_src_path, full_des_path)
|
|
|
|
logger.info(MSG_FIN + full_des_path)
|
|
|
|
else:
|
|
|
|
logger.error(f"Source path does not exist: {full_src_path}")
|
|
|
|
except Exception as e:
|
|
|
|
logger.error(f"Error copying {full_src_path} to {full_des_path}: {e}")
|
|
|
|
@classmethod
|
|
|
|
def run_for_all_bases(cls):
|
2024-06-19 07:04:00 +00:00
|
|
|
""" Define the bases to be used"""
|
2024-05-25 11:06:14 +00:00
|
|
|
bases = ["deb", "dev", "debld", "devld", "invalid_base"]
|
|
|
|
for base in bases:
|
|
|
|
cls(base)
|
|
|
|
|
2024-06-19 07:04:00 +00:00
|
|
|
#### This section is not really needed since this file is never executed
|
|
|
|
#### outright so I commented this
|
|
|
|
#if __name__ == "__main__": ## This seems incorrect, I am testing
|
|
|
|
# ChrootInstallerFiles.run_for_all_bases()
|
2023-08-24 06:16:56 +00:00
|
|
|
|
2024-06-10 07:12:16 +00:00
|
|
|
|
2023-08-24 06:16:56 +00:00
|
|
|
class BinaryFolders:
|
|
|
|
"""
|
|
|
|
Copy all the needed folders to BINARY Depending on
|
|
|
|
the architecture it will, copy folders as needed
|
|
|
|
"""
|
|
|
|
def __init__(self, sbase, sarch):
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info("Copy Binary")
|
2023-08-24 06:16:56 +00:00
|
|
|
self.sbase = sbase
|
|
|
|
self.sarch = sarch
|
|
|
|
src_binary = ('/splash/' + self.sbase + self.sarch + '/boot',
|
2024-04-29 11:30:11 +00:00
|
|
|
'/splash/' + self.sbase + self.sarch +'/isolinux',
|
2023-08-24 06:16:56 +00:00
|
|
|
'/splash/' + self.sbase + '_live-theme',
|
|
|
|
'/splash/' + self.sbase + '_splash',
|
|
|
|
'/splash/' + self.sbase + '_splash'
|
2024-04-29 11:30:11 +00:00
|
|
|
)
|
|
|
|
des_binary =('/boot',
|
|
|
|
'/isolinux',
|
|
|
|
'/boot/grub',
|
|
|
|
'/isolinux',
|
|
|
|
'/boot/grub'
|
2023-08-24 06:16:56 +00:00
|
|
|
)
|
|
|
|
# Binary Folders
|
|
|
|
binary_src_q = collections.deque(src_binary)
|
|
|
|
binary_des_q = collections.deque(des_binary)
|
|
|
|
binary_size_q = len(binary_src_q)
|
|
|
|
for size_length in range(binary_size_q):
|
|
|
|
source = binary_src_q.popleft()
|
|
|
|
des = binary_des_q.popleft()
|
2024-04-29 11:30:11 +00:00
|
|
|
logger.info(MSG_COPY+ HOME_FOLDER + source)
|
2023-08-24 06:16:56 +00:00
|
|
|
shutil.copytree(HOME_FOLDER + source,
|
2024-04-29 11:30:11 +00:00
|
|
|
HOME_FOLDER + BINARYPTH + des,
|
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + BINARYPTH + des)
|
2023-08-24 06:16:56 +00:00
|
|
|
|
2024-06-10 07:12:16 +00:00
|
|
|
|
2024-05-09 13:10:35 +00:00
|
|
|
class FusatoConfigs:
|
|
|
|
"""
|
|
|
|
Copy all the needed files to the hooks folders depending on
|
|
|
|
the architecture it will, copy folders as needed
|
|
|
|
"""
|
|
|
|
def __init__(self,sbase,sarch):
|
|
|
|
logger.info("Copy Hooks Files")
|
|
|
|
self.sbase = sbase
|
|
|
|
self.sarch = sarch
|
|
|
|
src_fusatoconfig = ('/hooks/normal/'+ self.sbase + self.sarch,)
|
|
|
|
des_fusatoconfig = ('/hooks/normal/',)
|
|
|
|
# Fusatoconfig FIles
|
|
|
|
fusatoconfig_src_q = collections.deque(src_fusatoconfig)
|
|
|
|
fusatoconfig_des_q = collections.deque(des_fusatoconfig)
|
|
|
|
fusatoconfig_size_q = len(fusatoconfig_src_q)
|
|
|
|
for size_length in range(fusatoconfig_size_q):
|
|
|
|
source = fusatoconfig_src_q.popleft()
|
|
|
|
des = fusatoconfig_des_q.popleft()
|
|
|
|
logger.info(MSG_COPY+ HOME_FOLDER + source)
|
|
|
|
shutil.copytree(HOME_FOLDER + source,
|
|
|
|
HOME_FOLDER + FUSATOCONFIG + des,
|
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + FUSATOCONFIG + des)
|
|
|
|
|
2024-06-10 07:12:16 +00:00
|
|
|
|
2024-05-09 13:10:35 +00:00
|
|
|
class InstallerFiles:
|
|
|
|
"""
|
|
|
|
Copy all the needed files to the installer depending on
|
|
|
|
the architecture it will, copy folders as needed
|
|
|
|
"""
|
|
|
|
def __init__(self,sbase,sarch):
|
|
|
|
logger.info("Copy Installer Files")
|
|
|
|
self.sbase = sbase
|
|
|
|
self.sarch = sarch
|
|
|
|
src_installer = ('/installer/preseed/'+ self.sbase + self.sarch,
|
|
|
|
'/installer/artwork/' + self.sbase + self.sarch,
|
|
|
|
'/installer/scripts/'+ self.sbase + self.sarch,
|
|
|
|
'/installer/grub/'+ self.sbase + self.sarch,
|
|
|
|
'/installer/sources/'+ self.sbase + self.sarch,
|
|
|
|
'/installer/sources/'+ self.sbase + self.sarch,
|
2024-05-12 00:17:42 +00:00
|
|
|
'/osrelease/'+ self.sbase + self.sarch
|
2024-05-09 13:10:35 +00:00
|
|
|
)
|
|
|
|
des_installer =('/',
|
|
|
|
'/usr/share/',
|
|
|
|
'/usr/lib/finish-install.d/',
|
|
|
|
'/preseed/grub/',
|
|
|
|
'/preseed/repos/',
|
|
|
|
'/preseed/conf/',
|
2024-05-12 00:17:42 +00:00
|
|
|
'/preseed/conf/'
|
2024-05-09 13:10:35 +00:00
|
|
|
)
|
2024-05-12 00:17:42 +00:00
|
|
|
# installer files
|
2024-05-09 13:10:35 +00:00
|
|
|
installer_src_q = collections.deque(src_installer)
|
|
|
|
installer_des_q = collections.deque(des_installer)
|
|
|
|
installer_size_q = len(installer_src_q)
|
|
|
|
for size_length in range(installer_size_q):
|
|
|
|
source = installer_src_q.popleft()
|
|
|
|
des = installer_des_q.popleft()
|
|
|
|
logger.info(MSG_COPY+ HOME_FOLDER + source)
|
|
|
|
shutil.copytree(HOME_FOLDER + source,
|
|
|
|
HOME_FOLDER + WPINSTALLER + des,
|
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPINSTALLER + des)
|
|
|
|
|
2024-06-10 07:12:16 +00:00
|
|
|
|
2024-05-12 23:15:35 +00:00
|
|
|
def mini_shared_installer_files():
|
2024-05-09 13:10:35 +00:00
|
|
|
"""
|
2024-05-12 23:15:35 +00:00
|
|
|
This function will get the files that are shared commonly amongst
|
|
|
|
all mini builds,
|
2024-05-09 13:10:35 +00:00
|
|
|
"""
|
2024-05-12 00:17:42 +00:00
|
|
|
logger.info("Copy mini installer files")
|
2024-05-09 13:10:35 +00:00
|
|
|
src_paths = ('/installer/keyrings/',
|
|
|
|
'/installer/applications/',
|
|
|
|
'/PepProPixMaps/',
|
|
|
|
'/pmostools/',
|
|
|
|
'/PepProTools/',
|
|
|
|
'/polkit/',
|
|
|
|
'/issue/',
|
2024-05-26 17:34:18 +00:00
|
|
|
'/pylibraries/requests/',
|
|
|
|
'/pylibraries/tendo/',
|
|
|
|
'/pylibraries/tendo-0.3.0.dist-info/',
|
|
|
|
'/pylibraries/ttkbootstrap/',
|
|
|
|
'/pylibraries/ttkbootstrap-1.10.1.dist-info/',
|
|
|
|
'/pylibraries/ttkcreator/',
|
2024-05-09 13:10:35 +00:00
|
|
|
'/lightdm/',
|
|
|
|
'/autostart'
|
|
|
|
)
|
|
|
|
des_paths =('/preseed/keyrings/',
|
|
|
|
'/preseed/apps/',
|
|
|
|
'/preseed/pixmaps/',
|
|
|
|
'/preseed/tools/',
|
|
|
|
'/preseed/protools/',
|
|
|
|
'/preseed/polkit/',
|
|
|
|
'/preseed/conf/',
|
2024-05-26 17:34:18 +00:00
|
|
|
'/preseed/py/requests/',
|
|
|
|
'/preseed/py/tendo/',
|
|
|
|
'/preseed/py/tendo-0.3.0.dist-info/',
|
|
|
|
'/preseed/py/ttkbootstrap/',
|
|
|
|
'/preseed/py/ttkbootstrap-1.10.1.dist-info/',
|
|
|
|
'/preseed/py/ttkcreator/',
|
2024-05-09 13:10:35 +00:00
|
|
|
'/preseed/lightdm/',
|
|
|
|
'/preseed/autostart/'
|
|
|
|
)
|
2024-05-12 23:15:35 +00:00
|
|
|
for src, des in zip(src_paths, des_paths):
|
|
|
|
src_path = HOME_FOLDER + src
|
|
|
|
des_path = HOME_FOLDER + WPINSTALLER + des
|
2024-06-19 07:04:00 +00:00
|
|
|
if os.path.isdir(src_path):
|
2024-05-12 23:15:35 +00:00
|
|
|
for root, dirs, files in os.walk(src_path):
|
|
|
|
for file in files:
|
|
|
|
source_file = os.path.join(root, file)
|
2024-06-19 07:04:00 +00:00
|
|
|
dest_file = os.path.join(des_path,
|
|
|
|
os.path.relpath(source_file, src_path)
|
|
|
|
)
|
2024-05-12 23:15:35 +00:00
|
|
|
logger.info(f"Copying {source_file} to {dest_file}")
|
|
|
|
shutil.copy(source_file, dest_file)
|
|
|
|
logger.info(f"Copy completed: {dest_file}")
|
|
|
|
else:
|
|
|
|
logger.info(f"Copying {src_path} to {des_path}")
|
|
|
|
shutil.copy(src_path, des_path)
|
|
|
|
logger.info(f"Copy completed: {des_path}")
|
2024-05-09 13:10:35 +00:00
|
|
|
|
2023-08-24 06:16:56 +00:00
|
|
|
|
|
|
|
class ArchitectureFiles:
|
|
|
|
"""
|
2024-05-26 17:34:18 +00:00
|
|
|
Copy all the needed files and folders to CHROOT. Depending on the
|
|
|
|
architecture, it will copy files and folders as needed.
|
2023-08-24 06:16:56 +00:00
|
|
|
"""
|
2024-05-26 17:34:18 +00:00
|
|
|
def __init__(self, sbase, sarch, force_copy=False):
|
|
|
|
self.force_copy = force_copy
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info("Copy Architecture")
|
2023-08-24 06:16:56 +00:00
|
|
|
self.sbase = sbase
|
|
|
|
self.sarch = sarch
|
|
|
|
sources_path = '/sources/'
|
2024-05-26 17:34:18 +00:00
|
|
|
src_paths = (sources_path + self.sbase + self.sarch +
|
2023-08-24 06:16:56 +00:00
|
|
|
'/sources.list',
|
2024-05-26 17:34:18 +00:00
|
|
|
'/id_files/pep_id',
|
|
|
|
'/osrelease/' + self.sbase + self.sarch,
|
|
|
|
'/osrelease/' + self.sbase + self.sarch,
|
|
|
|
'/grub/'+ self.sbase + self.sarch,
|
|
|
|
'/grub/' + self.sbase + '_themes'
|
|
|
|
)
|
|
|
|
des_paths = ('/opt/pepconf/sources.list',
|
|
|
|
'/usr/share/peppermint/pep_id',
|
|
|
|
'/usr/lib',
|
|
|
|
'/opt/pepconf',
|
2024-05-27 12:06:32 +00:00
|
|
|
'/etc/default',
|
2024-05-26 17:34:18 +00:00
|
|
|
'/boot/grub/themes'
|
|
|
|
)
|
2023-08-24 06:16:56 +00:00
|
|
|
src_q = collections.deque(src_paths)
|
|
|
|
des_q = collections.deque(des_paths)
|
|
|
|
size_q = len(src_q)
|
|
|
|
for size_length in range(size_q):
|
|
|
|
source = src_q.popleft()
|
|
|
|
des = des_q.popleft()
|
2024-05-26 17:34:18 +00:00
|
|
|
src_path = HOME_FOLDER + source
|
|
|
|
des_path = HOME_FOLDER + WPCHROOT + des
|
|
|
|
if os.path.exists(des_path) and not self.force_copy:
|
|
|
|
logger.info(f"Skipping {src_path} as it already exists at {des_path}")
|
|
|
|
continue
|
|
|
|
logger.info(f"Copying {src_path} to {des_path}")
|
|
|
|
try:
|
|
|
|
if os.path.isdir(src_path):
|
|
|
|
shutil.copytree(src_path, des_path, ignore_dangling_symlinks=True)
|
|
|
|
else:
|
|
|
|
shutil.copy2(src_path, des_path)
|
|
|
|
except Exception as e:
|
|
|
|
logger.error(f"Error copying {src_path} to {des_path}: {e}")
|
|
|
|
else:
|
|
|
|
logger.info(f"Successfully copied {src_path} to {des_path}")
|
2023-08-24 06:16:56 +00:00
|
|
|
|
2024-06-10 07:12:16 +00:00
|
|
|
|
2024-06-19 07:04:00 +00:00
|
|
|
def get_id_build_type():
|
|
|
|
"""
|
|
|
|
This will get the type of build that is taking place
|
|
|
|
"""
|
|
|
|
source_folder = '/home/pepadmin/start/bldtype'
|
2024-06-19 07:23:06 +00:00
|
|
|
dest_folder = '/home/pepadmin/bubbles/iso_configs/fusato/config/includes.chroot/opt/pepconf'
|
2024-06-19 07:12:01 +00:00
|
|
|
os.makedirs(dest_folder, exist_ok=True)
|
2024-06-19 07:04:00 +00:00
|
|
|
for filename in os.listdir(source_folder):
|
|
|
|
src_file = os.path.join(source_folder, filename)
|
|
|
|
dest_file = os.path.join(dest_folder, filename)
|
|
|
|
if os.path.isfile(src_file):
|
|
|
|
shutil.copy(src_file, dest_file)
|
|
|
|
print(f'Copied: {src_file} to {dest_file}')
|
|
|
|
|
|
|
|
|
2024-06-22 12:31:43 +00:00
|
|
|
def add_web_profile():
|
|
|
|
"""
|
|
|
|
This will move the web profile depending on the the build
|
|
|
|
typ
|
|
|
|
"""
|
|
|
|
logger.info("Copy Web Profiles")
|
|
|
|
path_to_bldtype_file = '/home/pepadmin/start/bldtype'
|
2024-06-22 12:51:24 +00:00
|
|
|
lw_src_path = '/browser_profiles/lw/lw_profile'
|
|
|
|
ff_src_path = '/browser_profiles/ff/ff_profile'
|
2024-06-22 12:31:43 +00:00
|
|
|
des_src_path ='/etc/skel/.local/share/pmostools'
|
|
|
|
build_id_list = [
|
|
|
|
path_to_bldtype_file + 'deb.64xfc',
|
|
|
|
path_to_bldtype_file + 'dev.64xfc',
|
|
|
|
path_to_bldtype_file + 'deb.armxfc',
|
|
|
|
path_to_bldtype_file + 'dev.armxfc',
|
|
|
|
path_to_bldtype_file + 'deb.64gfb',
|
|
|
|
path_to_bldtype_file + 'dev.64gfb',
|
|
|
|
path_to_bldtype_file + 'deb.64opb',
|
|
|
|
path_to_bldtype_file + 'dev.64opb'
|
|
|
|
]
|
|
|
|
profile_copied = False
|
|
|
|
for build_id in build_id_list:
|
|
|
|
if os.path.exists(build_id):
|
|
|
|
logger.info(
|
|
|
|
f"Found build id file: {build_id}. Copying lw profile."
|
|
|
|
)
|
2024-06-22 12:49:03 +00:00
|
|
|
shutil.copytree(HOME_FOLDER + lw_src_path,
|
|
|
|
HOME_FOLDER + WPCHROOT + des_src_path,
|
|
|
|
dirs_exist_ok=True
|
|
|
|
)
|
2024-06-22 12:31:43 +00:00
|
|
|
profile_copied = True
|
|
|
|
break
|
|
|
|
if not profile_copied:
|
|
|
|
logger.info(
|
|
|
|
"No macthing build file found. Copying ff profile."
|
|
|
|
)
|
2024-06-22 12:49:03 +00:00
|
|
|
shutil.copytree(HOME_FOLDER + ff_src_path,
|
|
|
|
HOME_FOLDER + WPCHROOT + des_src_path,
|
|
|
|
dirs_exist_ok=True
|
|
|
|
)
|
2024-06-22 12:31:43 +00:00
|
|
|
|
|
|
|
|
2023-08-24 06:16:56 +00:00
|
|
|
def set_symlinks():
|
|
|
|
"""
|
|
|
|
Set the symliknks that are used for all builds.
|
|
|
|
"""
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info("Copy Symlinks")
|
2023-08-24 06:16:56 +00:00
|
|
|
pep_info = '/usr/share/python-apt/templates/Peppermint.info'
|
|
|
|
pep_mirror = '/usr/share/python-apt/templates/Peppermint.mirrors'
|
|
|
|
pep_csv = '/usr/share/distro-info/peppermint.csv'
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info("Making - " + HOME_FOLDER + WPCHROOT + pep_info)
|
2023-08-24 06:16:56 +00:00
|
|
|
os.symlink('Debian.info', HOME_FOLDER + WPCHROOT + pep_info)
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + pep_info)
|
|
|
|
logger.info("Making - " + HOME_FOLDER + WPCHROOT + pep_mirror)
|
2023-08-24 06:16:56 +00:00
|
|
|
os.symlink('Debian.mirrors', HOME_FOLDER + WPCHROOT + pep_mirror)
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + pep_mirror)
|
|
|
|
logger.info("Making - " + HOME_FOLDER + WPCHROOT + pep_csv)
|
2023-08-24 06:16:56 +00:00
|
|
|
os.symlink('debian.csv', HOME_FOLDER + WPCHROOT + pep_csv)
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + pep_csv)
|
2023-08-24 06:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
def shared_folders():
|
|
|
|
"""
|
|
|
|
This function will get the files that are shared commonly amongst
|
|
|
|
all the builds,
|
|
|
|
"""
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info("Copy Shared folders")
|
2024-05-23 08:28:04 +00:00
|
|
|
src_paths = ('/plymouth/joy',
|
2023-08-24 06:16:56 +00:00
|
|
|
'/application',
|
|
|
|
'/font',
|
2024-01-16 11:53:17 -01:00
|
|
|
'/hooks/live',
|
2023-08-24 06:16:56 +00:00
|
|
|
'/issue',
|
|
|
|
'/issue',
|
|
|
|
'/polkit',
|
|
|
|
'/user_config',
|
|
|
|
'/PepProPixMaps',
|
|
|
|
'/wallpaper',
|
|
|
|
'/menu/menus',
|
|
|
|
'/face',
|
|
|
|
'/pmostools',
|
|
|
|
'/autostart',
|
2024-05-26 10:36:03 +00:00
|
|
|
'/pylibraries'
|
2023-08-24 06:16:56 +00:00
|
|
|
)
|
2024-05-23 08:28:04 +00:00
|
|
|
des_paths =('/usr/share/plymouth/themes/joy',
|
2023-08-24 06:16:56 +00:00
|
|
|
'/usr/share/applications',
|
|
|
|
'/usr/share/fonts/pepconf',
|
2024-01-16 11:53:17 -01:00
|
|
|
'/usr/lib/live/config',
|
2023-08-24 06:16:56 +00:00
|
|
|
'/etc',
|
|
|
|
'/opt/pepconf',
|
|
|
|
'/usr/share/polkit-1/actions',
|
|
|
|
'/etc/live/config.conf.d',
|
|
|
|
'/usr/share/pixmaps',
|
|
|
|
'/usr/share/backgrounds',
|
|
|
|
'/etc/skel/.config/menus',
|
|
|
|
'/etc/skel/',
|
|
|
|
'/etc/skel/.local/share/pmostools',
|
|
|
|
'/etc/skel/.config/autostart',
|
2024-05-26 10:36:03 +00:00
|
|
|
'/usr/lib/python3/dist-packages'
|
2023-08-24 06:16:56 +00:00
|
|
|
)
|
|
|
|
src_q = collections.deque(src_paths)
|
|
|
|
des_q = collections.deque(des_paths)
|
2023-08-24 06:46:21 +00:00
|
|
|
size_q = len(des_q)
|
2023-08-24 06:16:56 +00:00
|
|
|
for size_length in range(size_q):
|
|
|
|
source = src_q.popleft()
|
|
|
|
des = des_q.popleft()
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_COPY+ HOME_FOLDER + source)
|
2023-08-24 06:16:56 +00:00
|
|
|
shutil.copytree(HOME_FOLDER + source,
|
|
|
|
HOME_FOLDER + WPCHROOT + des,
|
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des)
|
2024-06-19 07:04:00 +00:00
|
|
|
# After get the maine files lets get the build type taking place
|
|
|
|
get_id_build_type()
|
2023-08-24 06:16:56 +00:00
|
|
|
|
2024-04-12 11:23:24 +00:00
|
|
|
|
2023-08-25 11:15:59 +00:00
|
|
|
def icons_themes():
|
2023-08-24 06:16:56 +00:00
|
|
|
"""
|
|
|
|
This function will get the icons and themse that are
|
|
|
|
for all the builds
|
|
|
|
"""
|
2023-09-11 11:57:40 +00:00
|
|
|
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info("Copy icons and themes")
|
2023-09-11 11:57:40 +00:00
|
|
|
|
2023-08-24 12:55:01 +00:00
|
|
|
src_paths =('/theme/Marwaita Dark Debian/',
|
|
|
|
'/theme/Marwaita Dark Manjaro/',
|
|
|
|
'/theme/Marwaita Dark Peppermint/',
|
|
|
|
'/theme/Marwaita Debian/',
|
|
|
|
'/theme/Marwaita Manjaro/',
|
|
|
|
'/theme/Marwaita Peppermint/',
|
2023-09-14 11:57:24 +00:00
|
|
|
'/theme/Marwaita-Xfwm/',
|
|
|
|
'/theme/Marwaita-Xfwm-Alt/',
|
|
|
|
'/theme/Marwaita-Xfwm-Color-Dark-Text/',
|
|
|
|
'/theme/Marwaita-Xfwm-Color-Light-Text/',
|
|
|
|
'/theme/Marwaita-Xfwm-Dark/',
|
2023-08-24 12:55:01 +00:00
|
|
|
'/icons/Tela-circle-blue-dark/',
|
|
|
|
'/icons/Tela-circle-green-dark/',
|
|
|
|
'/icons/Tela-circle-red-dark/',
|
|
|
|
'/icons/Tela-circle-blue/',
|
|
|
|
'/icons/Tela-circle-green/',
|
|
|
|
'/icons/Tela-circle-red/',
|
|
|
|
'/icons/Tela-circle/'
|
2023-08-24 06:16:56 +00:00
|
|
|
)
|
2023-09-05 14:38:55 +00:00
|
|
|
des_paths = ('/usr/share/themes/Marwaita Dark Debian/',
|
2023-08-25 04:22:49 +00:00
|
|
|
'/usr/share/themes/Marwaita Dark Manjaro/',
|
2023-09-05 14:38:55 +00:00
|
|
|
'/usr/share/themes/Marwaita Dark Peppermint/',
|
2023-08-25 04:22:49 +00:00
|
|
|
'/usr/share/themes/Marwaita Debian/',
|
2023-09-05 14:38:55 +00:00
|
|
|
'/usr/share/themes/Marwaita Manjaro/',
|
2023-08-25 04:22:49 +00:00
|
|
|
'/usr/share/themes/Marwaita Peppermint/',
|
2023-09-14 11:57:24 +00:00
|
|
|
'/usr/share/themes/Marwaita-Xfwm/',
|
|
|
|
'/usr/share/themes/Marwaita-Xfwm-Alt/',
|
|
|
|
'/usr/share/themes/Marwaita-Xfwm-Color-Dark-Text/',
|
|
|
|
'/usr/share/themes/Marwaita-Xfwm-Color-Light-Text/',
|
|
|
|
'/usr/share/themes/Marwaita-Xfwm-Dark/',
|
2023-09-05 14:38:55 +00:00
|
|
|
'/usr/share/icons/Tela-circle-blue-dark/',
|
2023-08-25 04:22:49 +00:00
|
|
|
'/usr/share/icons/Tela-circle-green-dark/',
|
2023-09-05 14:38:55 +00:00
|
|
|
'/usr/share/icons/Tela-circle-red-dark/',
|
2023-08-25 04:22:49 +00:00
|
|
|
'/usr/share/icons/Tela-circle-blue/',
|
2023-09-05 14:38:55 +00:00
|
|
|
'/usr/share/icons/Tela-circle-green/',
|
2023-08-25 04:22:49 +00:00
|
|
|
'/usr/share/icons/Tela-circle-red/',
|
|
|
|
'/usr/share/icons/Tela-circle/'
|
2023-08-24 06:16:56 +00:00
|
|
|
)
|
|
|
|
src_q = collections.deque(src_paths)
|
|
|
|
des_q = collections.deque(des_paths)
|
|
|
|
size_q = len(src_q)
|
|
|
|
for size_length in range(size_q):
|
|
|
|
source = src_q.popleft()
|
2023-08-25 11:42:09 +00:00
|
|
|
des = des_q.popleft()
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_COPY+ HOME_FOLDER + source)
|
2023-08-25 11:45:41 +00:00
|
|
|
shutil.copytree(HOME_FOLDER + source,
|
2023-08-25 03:52:52 +00:00
|
|
|
HOME_FOLDER + WPCHROOT + des,
|
2023-08-25 11:42:57 +00:00
|
|
|
dirs_exist_ok = True
|
2023-08-25 03:52:52 +00:00
|
|
|
)
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des)
|
2023-08-25 11:42:09 +00:00
|
|
|
|
2023-08-24 06:16:56 +00:00
|
|
|
|
|
|
|
def shared_files():
|
|
|
|
"""
|
2024-06-10 07:12:16 +00:00
|
|
|
This will copy all specific files that a used for all
|
2023-08-24 06:16:56 +00:00
|
|
|
builds.
|
2023-09-05 14:38:55 +00:00
|
|
|
"""
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info("Copy Shared Files")
|
2023-08-24 06:16:56 +00:00
|
|
|
src_paths = ('/aliases/bash_aliases',
|
2023-09-14 03:54:24 +00:00
|
|
|
'/sources/peppermint.list',
|
2023-08-24 06:16:56 +00:00
|
|
|
'/PepProTools/xDaily',
|
|
|
|
'/PepProTools/welcome',
|
|
|
|
'/PepProTools/kumo',
|
2024-05-24 02:16:18 +00:00
|
|
|
'/PepProTools/xdaily-gui',
|
2024-06-02 12:42:02 +00:00
|
|
|
'/PepProTools/suggested',
|
2024-06-07 08:35:42 +00:00
|
|
|
'/PepProTools/pfetch',
|
2023-08-24 06:16:56 +00:00
|
|
|
'/lightdm/lightdm.conf',
|
|
|
|
'/lightdm/lightdm-gtk-greeter.conf',
|
|
|
|
'/plymouth/plymouthd.conf',
|
|
|
|
)
|
|
|
|
des_paths = ('/etc/skel/.bash_aliases',
|
2023-09-14 03:54:24 +00:00
|
|
|
'/etc/apt/sources.list.d',
|
2023-08-24 06:16:56 +00:00
|
|
|
'/usr/local/bin/xDaily',
|
|
|
|
'/usr/local/bin/welcome',
|
|
|
|
'/usr/local/bin/kumo',
|
2024-05-24 02:16:18 +00:00
|
|
|
'/usr/local/bin/xdaily-gui',
|
2024-06-02 12:42:02 +00:00
|
|
|
'/usr/local/bin/suggested',
|
2024-06-07 08:35:42 +00:00
|
|
|
'/usr/local/bin/pfetch',
|
2023-08-24 06:16:56 +00:00
|
|
|
'/etc/lightdm/lightdm.conf',
|
|
|
|
'/etc/lightdm/lightdm-gtk-greeter.conf',
|
2024-05-24 02:16:18 +00:00
|
|
|
'/etc/plymouth/plymouthd.conf',
|
2023-08-24 06:16:56 +00:00
|
|
|
)
|
|
|
|
src_q = collections.deque(src_paths)
|
|
|
|
des_q = collections.deque(des_paths)
|
|
|
|
size_q = len(src_q)
|
|
|
|
for size_length in range(size_q):
|
|
|
|
source = src_q.popleft()
|
|
|
|
des = des_q.popleft()
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_COPY+ HOME_FOLDER + source)
|
2023-08-24 06:16:56 +00:00
|
|
|
shutil.copy(HOME_FOLDER + source,
|
|
|
|
HOME_FOLDER + WPCHROOT + des
|
|
|
|
)
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des)
|
2023-08-24 06:16:56 +00:00
|
|
|
|
2024-04-12 11:23:24 +00:00
|
|
|
|
|
|
|
def shared_server_files():
|
|
|
|
"""
|
|
|
|
This silll copy all specific files that a used for the server
|
|
|
|
builds.
|
|
|
|
"""
|
|
|
|
logger.info("Copy Shared Files")
|
|
|
|
src_paths = ('/server/firewall/public.xml',
|
|
|
|
)
|
|
|
|
des_paths = ('/etc/firewalld/zones',
|
|
|
|
)
|
|
|
|
# copy files to thier CHROOT Location
|
|
|
|
src_q = collections.deque(src_paths)
|
|
|
|
des_q = collections.deque(des_paths)
|
|
|
|
size_q = len(src_q)
|
|
|
|
for size_length in range(size_q):
|
|
|
|
source = src_q.popleft()
|
|
|
|
des = des_q.popleft()
|
|
|
|
logger.info(MSG_COPY+ HOME_FOLDER + source)
|
|
|
|
shutil.copy(HOME_FOLDER + source,
|
|
|
|
HOME_FOLDER + WPCHROOT + des
|
|
|
|
)
|
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des)
|
2023-08-24 06:16:56 +00:00
|
|
|
|
2024-06-10 07:12:16 +00:00
|
|
|
|
2023-08-24 06:16:56 +00:00
|
|
|
def boostrap_shared():
|
|
|
|
"""
|
|
|
|
Copy specific folders in the boostrap location
|
2023-08-26 11:39:13 +00:00
|
|
|
"""
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info("Copy Shared BootStrap")
|
2023-08-24 06:16:56 +00:00
|
|
|
src_paths = ('/issue',)
|
|
|
|
des_paths = ('/etc',)
|
|
|
|
src_q = collections.deque(src_paths)
|
|
|
|
des_q = collections.deque(des_paths)
|
|
|
|
size_q = len(src_q)
|
|
|
|
for size_length in range(size_q):
|
|
|
|
source = src_q.popleft()
|
|
|
|
des = des_q.popleft()
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_COPY+ HOME_FOLDER + source)
|
2023-08-24 06:16:56 +00:00
|
|
|
shutil.copytree(HOME_FOLDER + source,
|
|
|
|
HOME_FOLDER + BOOTSTRAP + des,
|
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des)
|
2023-08-24 06:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
def xfce_configs():
|
|
|
|
"""
|
|
|
|
Copy the xfce files.
|
|
|
|
"""
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info("Copy xfce4 configs")
|
2023-08-24 06:16:56 +00:00
|
|
|
src_xfce = '/xfce/xfce4'
|
|
|
|
des_xfce = '/etc/skel/.config/xfce4'
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_COPY + HOME_FOLDER + src_xfce)
|
2023-08-24 06:16:56 +00:00
|
|
|
shutil.copytree(HOME_FOLDER + src_xfce,
|
|
|
|
HOME_FOLDER + WPCHROOT + des_xfce,
|
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des_xfce)
|
2023-08-24 06:16:56 +00:00
|
|
|
src_thunar = '/xfce/Thunar'
|
|
|
|
des_thunar = '/etc/skel/.config/Thunar'
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_COPY+ HOME_FOLDER + src_thunar)
|
2023-08-24 06:16:56 +00:00
|
|
|
shutil.copytree(HOME_FOLDER + src_thunar,
|
|
|
|
HOME_FOLDER + WPCHROOT + des_thunar,
|
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des_thunar)
|
2023-08-24 06:16:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
def gnome_flahsbak_configs():
|
|
|
|
"""
|
|
|
|
Copy the gnome flashback files
|
|
|
|
"""
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info("Copy Gnome Flashback configs")
|
2023-08-24 06:16:56 +00:00
|
|
|
src_gnomef = '/gnome-flashback'
|
2023-09-24 16:03:14 +00:00
|
|
|
des_gnomef = '/etc/skel/'
|
2023-09-06 13:24:42 +00:00
|
|
|
logger.info("INFO: Copying - " + HOME_FOLDER + src_gnomef)
|
2023-08-24 06:16:56 +00:00
|
|
|
shutil.copytree(HOME_FOLDER + src_gnomef,
|
|
|
|
HOME_FOLDER + WPCHROOT + des_gnomef,
|
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
2023-09-09 10:27:30 +00:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des_gnomef)
|
2023-09-09 10:33:02 +00:00
|
|
|
|
2023-09-22 11:31:37 +00:00
|
|
|
|
2023-09-23 15:14:55 +00:00
|
|
|
def open_box_configs():
|
|
|
|
"""
|
|
|
|
Copy the openbox files
|
|
|
|
"""
|
|
|
|
logger.info("Copy openbox configs")
|
2024-01-06 17:52:34 -01:00
|
|
|
src_ob = '/openbox'
|
|
|
|
des_ob = '/etc/skel/'
|
2023-09-23 15:14:55 +00:00
|
|
|
logger.info("INFO: Copying - " + HOME_FOLDER + src_ob)
|
|
|
|
shutil.copytree(HOME_FOLDER + src_ob,
|
|
|
|
HOME_FOLDER + WPCHROOT + des_ob,
|
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des_ob)
|
2024-03-19 12:12:52 -01:00
|
|
|
|
|
|
|
|
2024-03-20 11:53:53 -01:00
|
|
|
def loaded_configs():
|
2024-03-11 12:57:59 -01:00
|
|
|
"""
|
2024-03-19 12:12:52 -01:00
|
|
|
Copy the loaded xfce files
|
2024-06-19 07:04:00 +00:00
|
|
|
"""
|
2024-03-11 12:57:59 -01:00
|
|
|
logger.info("Copy loaded xfce configs")
|
2024-05-09 13:10:35 +00:00
|
|
|
src_loaded = '/loaded/xfce'
|
2024-03-20 11:53:53 -01:00
|
|
|
des_loaded = '/etc/skel/.config/'
|
2024-03-19 12:12:52 -01:00
|
|
|
logger.info("INFO: Copying - " + HOME_FOLDER + src_loaded)
|
2024-03-20 11:53:53 -01:00
|
|
|
shutil.copytree(HOME_FOLDER + src_loaded,
|
2024-03-19 12:12:52 -01:00
|
|
|
HOME_FOLDER + WPCHROOT + des_loaded,
|
2024-03-11 12:57:59 -01:00
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
2024-03-19 12:12:52 -01:00
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des_loaded)
|
2023-09-23 15:14:55 +00:00
|
|
|
|
|
|
|
|
2024-03-25 11:58:00 -01:00
|
|
|
def loaded_folders():
|
|
|
|
"""
|
|
|
|
This function will get the files that are used by the loaded builds,
|
|
|
|
"""
|
|
|
|
|
|
|
|
logger.info("Copy loaded folders")
|
2023-09-23 15:14:55 +00:00
|
|
|
|
2024-05-09 13:10:35 +00:00
|
|
|
src_paths = ('/loaded/application',
|
|
|
|
'/loaded/wallpaper'
|
2024-03-25 11:58:00 -01:00
|
|
|
)
|
|
|
|
des_paths =('/usr/share/applications',
|
2024-03-28 13:05:56 -01:00
|
|
|
'/usr/share/backgrounds'
|
|
|
|
)
|
2024-03-25 11:58:00 -01:00
|
|
|
src_q = collections.deque(src_paths)
|
|
|
|
des_q = collections.deque(des_paths)
|
|
|
|
size_q = len(des_q)
|
|
|
|
for size_length in range(size_q):
|
|
|
|
source = src_q.popleft()
|
|
|
|
des = des_q.popleft()
|
|
|
|
logger.info(MSG_COPY+ HOME_FOLDER + source)
|
|
|
|
shutil.copytree(HOME_FOLDER + source,
|
|
|
|
HOME_FOLDER + WPCHROOT + des,
|
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des)
|
2024-05-09 13:10:35 +00:00
|
|
|
|
2024-06-10 07:12:16 +00:00
|
|
|
|
2024-05-09 13:10:35 +00:00
|
|
|
def server_configs():
|
|
|
|
"""
|
|
|
|
Copy the server files
|
2024-06-19 07:04:00 +00:00
|
|
|
"""
|
2024-05-09 13:10:35 +00:00
|
|
|
logger.info("Copy server configs")
|
|
|
|
src_server = '/server/configs'
|
|
|
|
des_server = '/etc/skel/.config/'
|
|
|
|
logger.info("INFO: Copying - " + HOME_FOLDER + src_server)
|
|
|
|
shutil.copytree(HOME_FOLDER + src_server,
|
|
|
|
HOME_FOLDER + WPCHROOT + des_server,
|
|
|
|
dirs_exist_ok = True
|
|
|
|
)
|
|
|
|
logger.info(MSG_FIN + HOME_FOLDER + WPCHROOT + des_server)
|
|
|
|
|
2024-06-19 07:04:00 +00:00
|
|
|
|
|
|
|
|