mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-10 20:01:54 +01:00
d5dc897238
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
92 lines
No EOL
2.8 KiB
Python
92 lines
No EOL
2.8 KiB
Python
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# config.py file is part of slpkg.
|
|
|
|
# Copyright 2014-2020 Dimitris Zlatanidis <d.zlatanidis@gmail.com>
|
|
# All rights reserved.
|
|
|
|
# Slpkg is a user-friendly package manager for Slackware installations
|
|
|
|
# https://gitlab.com/dslackw/slpkg
|
|
|
|
# Slpkg is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
import shutil
|
|
import filecmp
|
|
import subprocess
|
|
|
|
from slpkg.utils import Utils
|
|
from slpkg.__metadata__ import MetaData as _meta_
|
|
|
|
|
|
class Config(Utils):
|
|
"""Print or edit slpkg configuration file
|
|
"""
|
|
def __init__(self):
|
|
self.config_file = "/etc/slpkg/slpkg.conf"
|
|
self.meta = _meta_
|
|
self.green = _meta_.color["GREEN"]
|
|
self.red = _meta_.color["RED"]
|
|
self.cyan = _meta_.color["CYAN"]
|
|
self.endc = _meta_.color["ENDC"]
|
|
|
|
def view(self):
|
|
"""View slpkg config file
|
|
"""
|
|
conf_args = [
|
|
"RELEASE",
|
|
"SLACKWARE_VERSION",
|
|
"COMP_ARCH",
|
|
"BUILD_PATH",
|
|
"PACKAGES",
|
|
"PATCHES",
|
|
"CHECKMD5",
|
|
"DEL_ALL",
|
|
"DEL_BUILD",
|
|
"SBO_BUILD_LOG",
|
|
"MAKEFLAGS",
|
|
"DEFAULT_ANSWER",
|
|
"REMOVE_DEPS_ANSWER",
|
|
"SKIP_UNST",
|
|
"RSL_DEPS",
|
|
"DEL_DEPS",
|
|
"USE_COLORS",
|
|
"DOWNDER",
|
|
"DOWNDER_OPTIONS",
|
|
"SLACKPKG_LOG",
|
|
"ONLY_INSTALLED",
|
|
"EDITOR",
|
|
"NOT_DOWNGRADE",
|
|
"HTTP_PROXY",
|
|
]
|
|
read_conf = self.read_file(self.config_file)
|
|
for line in read_conf.splitlines():
|
|
if not line.startswith("#") and line.split("=")[0] in conf_args:
|
|
print(line)
|
|
else:
|
|
print(f"{self.cyan}{line}{self.endc}", end="\n")
|
|
|
|
def edit(self):
|
|
"""Edit configuration file
|
|
"""
|
|
subprocess.call(f"{self.meta.editor} {self.config_file}", shell=True)
|
|
|
|
def reset(self):
|
|
"""Reset slpkg.conf file with default values
|
|
"""
|
|
shutil.copy2(f"{self.config_file}.orig", self.config_file)
|
|
if filecmp.cmp(f"{self.config_file}.orig", self.config_file):
|
|
print(f"{self.green}The reset was done{self.endc}")
|
|
else:
|
|
print(f"{self.red}Reset failed{self.endc}") |