Add a README file
This commit is contained in:
parent
a31e10d3db
commit
1ee7ec6207
@ -140,7 +140,7 @@ def list_installed_aur_packages():
|
|||||||
return pacman_raw
|
return pacman_raw
|
||||||
|
|
||||||
|
|
||||||
def list_new_config_files():
|
def list_new_config_files(ignore_binaries=True):
|
||||||
"""
|
"""
|
||||||
List all the config files under /etc that are not directly coming from a
|
List all the config files under /etc that are not directly coming from a
|
||||||
packet.
|
packet.
|
||||||
@ -162,13 +162,8 @@ def list_new_config_files():
|
|||||||
diff = []
|
diff = []
|
||||||
# Filter etc files
|
# Filter etc files
|
||||||
for i in raw_diff:
|
for i in raw_diff:
|
||||||
if i.startswith("/etc/certs/"):
|
|
||||||
continue
|
|
||||||
if i.startswith("/etc/ssl/certs"):
|
|
||||||
continue
|
|
||||||
if i.startswith("/etc/ca-certificates"):
|
|
||||||
continue
|
|
||||||
# Do not append if binary file
|
# Do not append if binary file
|
||||||
|
if ignore_binaries:
|
||||||
check_binary_raw = subprocess.check_output(["file", i])
|
check_binary_raw = subprocess.check_output(["file", i])
|
||||||
check_binary_raw = check_binary_raw.decode("utf-8")
|
check_binary_raw = check_binary_raw.decode("utf-8")
|
||||||
if "text" not in check_binary_raw:
|
if "text" not in check_binary_raw:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user