mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
3fd820e5fa
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
62 lines
2 KiB
Python
Executable file
62 lines
2 KiB
Python
Executable file
#!/usr/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# clean.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 os
|
|
import shutil
|
|
|
|
|
|
class Clean:
|
|
"""Clean all data like man page, log files, PACKAGES.TXT and
|
|
configuration files. This is useful if "slpkg" installed via
|
|
"pip" because pip uninstalls only Python packages and script
|
|
and not data. So if uninstall with "# pip uninstall slpkg" after
|
|
run "# python clean.py" to remove all data and configuration files.
|
|
NOTE: Run this script as root."""
|
|
def __init__(self):
|
|
self.files = [
|
|
"/usr/man/man8/slpkg.8.gz",
|
|
"/etc/bash_completion.d/slpkg.bash-completion",
|
|
"/etc/fish/completions/slpkg.fish"
|
|
]
|
|
self.dirs = [
|
|
"/etc/slpkg/",
|
|
"/var/log/slpkg/",
|
|
"/var/lib/slpkg/",
|
|
"/tmp/slpkg/"
|
|
]
|
|
|
|
def start(self):
|
|
for f in self.files:
|
|
if os.path.isfile(f):
|
|
print(f"Remove file --> {f}")
|
|
os.remove(f)
|
|
for d in self.dirs:
|
|
if os.path.exists(d):
|
|
print(f"Remove directory --> {d}")
|
|
shutil.rmtree(d)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
clean = Clean()
|
|
clean.start()
|