summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* unixgroup: Fix return annotation, so that is really nullableHEADmasterMarco Trevisan2023-04-251-1/+1
|
* Add out param GI annotation to polkit_implicit_authorization_from_stringVal Packett2023-04-251-0/+5
|
* Add Russian translationAleksandr Melman2023-04-121-0/+217
|
* Update LINGUASAleksandr Melman2023-04-121-0/+1
|
* docs, build: replace the mailman url with the gitlab/issues urlVincent Mihalkovic2023-04-118-8/+8
|
* polkitagentsession: Fix the tautological check for add_newlineVincent Mihalkovic2023-04-051-1/+1
|
* systemd: set User/Group and don't change uid/gid if already setLuca Boccassi2023-04-053-3/+12
|
* Ownership of custom rules changed to increase securityJan Rybar2023-04-031-6/+6
|
* Update Swedish translationAnders Jonsson2023-03-211-14/+17
|
* Stop installing /usr/share/polkit-1/rules.d as 700/polkitdLuca Boccassi2023-03-212-19/+13
|
* The templates are not chosen by default in the web UI.Jan Rybar2023-03-212-0/+0
|
* Update Polish translationPiotr Drąg2023-03-181-10/+11
|
* Gitlab templatesJan Rybar2023-03-152-0/+24
|
* pkexec: improve pkexec authentication messageVincent Mihalkovic2023-03-151-2/+11
|
* Mitigate the change in pipeline restriction (runners misused by miners) Jan Rybar2023-03-151-0/+7
| | | https://gitlab.freedesktop.org/freedesktop/freedesktop/-/issues/438
* Update Polish translationPiotr Drąg2023-03-041-36/+41
|
* if LANGUAGE have been set in /etc/default, set LANG is invalid, gettext ↵liudun2023-02-281-2/+3
| | | | cannot be used normally
* Update Turkish translationSabri Unal2023-02-281-3/+3
|
* Fix linker issue (on FreeBSD) with Spidermonkey JavaScript engineOlivier Duchateau2023-02-071-0/+5
|
* build: libelogind session tracking does not require systemd.Marius Bakke2023-02-072-2/+2
| | | | | | | * meson.build (enable_logind): Permit empty systemd_systemdsystemunitdir when session_tracking != 'libsystemd-login'. * data/meson.build (service_conf): Test for SESSION_TRACKING == 'libsystemd-login' instead of ENABLE_LOGIND when installing service files.
* po: Update German translationJürgen Benvenuti2023-02-011-40/+47
|
* pkexec: avoid access to a NULL pointerVincent Mihalkovic2023-02-011-1/+1
|
* fix core dump problembboy_vi2023-01-181-1/+1
|
* Add SRPM build dependencies for PackitMatej Focko2022-12-211-0/+4
| | | | | | Add dependencies to enable building SRPM in Copr. Signed-off-by: Matej Focko <mfocko@redhat.com>
* meson.build: fix install with libs_onlySam James2022-12-071-8/+11
| | | | | Bug: https://bugs.gentoo.org/884701 Signed-off-by: Sam James <sam@gentoo.org>
* Integration and config for Packit serviceVincent Mihalkovic2022-11-081-0/+25
|
* updated links to latest documentationJan Rybar2022-10-262-2/+3
|
* Post-release version bumpJan Rybar2022-10-261-1/+1
| | | | | | This version bump is needed in order to make seamless build on Fedora Copr via packit (soon to be implemented) This also brings back useful tradition.
* Release 122122Jan Rybar2022-10-262-1/+47
|
* Release and documentation paths updated to Gitlab onlyJan Rybar2022-10-261-2/+8
|
* Update Swedish translationAnders Jonsson2022-10-261-34/+40
|
* po: Add Georgian translationNorwayFun2022-10-252-0/+202
|
* pkttyagent: Fix small memory leakMartin Kletzander2022-10-251-0/+6
|
* pkttyagent: Only restore tty flags if they were changedMartin Kletzander2022-10-252-1/+21
|
* polkit Documentation as Gitlab Pages added in CI jobsJan Rybar2022-10-031-5/+24
|
* docs: fix building with meson 0.61.1mikhailnov2022-09-092-7/+7
|
* build: add option to skip building polkitdPeter Eisenmann2022-09-074-4/+17
|
* meson: support -Dos_type=lfs and /etc/lfs-release autodetectionXi Ruoyao2022-09-072-1/+9
|
* build: Honour pam_prefix meson optionLuciano Santos2022-08-152-2/+2
| | | | | | Make the use of pam_prefix worth its while since, at the moment, its value is not being used. Instead, a hard-coded path is being deployed when it shouldn't anymore.
* jsauthority: port to mozjs-102Xi Ruoyao2022-08-122-3/+1
|
* polkitbackendduktapeauthority.c: Print the error string we get back from duktapeJordan Petridis2022-08-041-1/+1
| | | | Looks like it was a typo.
* build: Remove spurious if clause in summary outputMichael Biebl2022-07-161-2/+0
| | | | Introduced accidentally in commit c7fc4e1b61f0fd82fc697c19c604af7e9fb291a2
* Install 50-default.rules in /usr/shareLuca Boccassi2022-07-141-1/+1
| | | | | | Same rationale as https://gitlab.freedesktop.org/polkit/polkit/-/merge_requests/11 and https://gitlab.freedesktop.org/polkit/polkit/-/merge_requests/72 /etc is for local admin changes, upstream/vendor config files should go in /usr/share
* Make netgroup support optionalA. Wilcox2022-07-149-9/+44
| | | | | | | | | | | | | | | | | On at least Linux/musl and Linux/uclibc, netgroup support is not available. PolKit fails to compile on these systems for that reason. This change makes netgroup support conditional on the presence of the setnetgrent(3) function which is required for the support to work. If that function is not available on the system, an error will be returned to the administrator if unix-netgroup: is specified in configuration. (sam: rebased for Meson and Duktape.) Closes: https://gitlab.freedesktop.org/polkit/polkit/-/issues/14 Closes: https://gitlab.freedesktop.org/polkit/polkit/-/issues/163 Closes: https://gitlab.freedesktop.org/polkit/polkit/-/merge_requests/52 Signed-off-by: A. Wilcox <AWilcox@Wilcox-Tech.com>
* Release v. 121121Jan Rybar2022-07-112-1/+52
|
* README aligned with build system changeJan Rybar2022-06-271-0/+22
|
* fixup! backend: Dedup some code for temporary auth subjectsVincent Mihalkovic2022-05-131-1/+3
| | | | | | | See https://bugs.freedesktop.org/show_bug.cgi?id=23867 which turned up from `git annotate` here. I was reading this code and noticed it was duplicated.
* backend: Dedup some code for temporary auth subjectsColin Walters2022-05-101-42/+32
| | | | | | | See https://bugs.freedesktop.org/show_bug.cgi?id=23867 which turned up from `git annotate` here. I was reading this code and noticed it was duplicated.
* Remove autotools build systemJan Rybar2022-05-0924-3964/+0
|
* pkexec: Allow --version and --help even if not setuid rootMatt Turner2022-05-031-21/+21
|