summaryrefslogtreecommitdiff
path: root/meson_post_install.py
diff options
context:
space:
mode:
Diffstat (limited to 'meson_post_install.py')
-rw-r--r--meson_post_install.py31
1 files changed, 13 insertions, 18 deletions
diff --git a/meson_post_install.py b/meson_post_install.py
index e742310..6188cbb 100644
--- a/meson_post_install.py
+++ b/meson_post_install.py
@@ -17,10 +17,9 @@ def destdir_path(p):
return os.path.join(prefix, p)
bindir = destdir_path(sys.argv[1])
-pkgdatadir = destdir_path(sys.argv[2])
-pkglibdir = destdir_path(sys.argv[3])
-pkgsysconfdir = destdir_path(sys.argv[4])
-polkitd_user = sys.argv[5]
+pkglibdir = destdir_path(sys.argv[2])
+pkgsysconfdir = destdir_path(sys.argv[3])
+polkitd_user = sys.argv[4]
try:
polkitd_uid = pwd.getpwnam(polkitd_user).pw_uid
@@ -40,22 +39,18 @@ else:
)
)
-dst_dirs = [
- os.path.join(pkgsysconfdir, 'rules.d'),
- os.path.join(pkgdatadir, 'rules.d')
-]
+dst = os.path.join(pkgsysconfdir, 'rules.d')
-for dst in dst_dirs:
- if not os.path.exists(dst):
- os.makedirs(dst, mode=0o700)
- if os.geteuid() == 0 and polkitd_uid is not None:
- os.chown(dst, polkitd_uid, -1)
- else:
- print(
- 'Owner of {} needs to be set to {} after installation'.format(
- dst, polkitd_user,
- )
+if not os.path.exists(dst):
+ os.makedirs(dst, mode=0o700)
+ if os.geteuid() == 0 and polkitd_uid is not None:
+ os.chown(dst, polkitd_uid, -1)
+ else:
+ print(
+ 'Owner of {} needs to be set to {} after installation'.format(
+ dst, polkitd_user,
)
+ )
# polkit-agent-helper-1 need to be setuid root because it's used to
# authenticate not only the invoking user, but possibly also root