qrexec: make the log writable by qubes group
Otherwise if VM was started as root, it will never start as normal user again.
This commit is contained in:
parent
04816e014b
commit
b07475efea
@ -273,7 +273,7 @@ void init(int xid)
|
|||||||
umask(0007); // make the log readable by the "qubes" group
|
umask(0007); // make the log readable by the "qubes" group
|
||||||
logfd =
|
logfd =
|
||||||
open(qrexec_error_log_name, O_WRONLY | O_CREAT | O_TRUNC,
|
open(qrexec_error_log_name, O_WRONLY | O_CREAT | O_TRUNC,
|
||||||
0640);
|
0660);
|
||||||
|
|
||||||
if (logfd < 0) {
|
if (logfd < 0) {
|
||||||
perror("open");
|
perror("open");
|
||||||
|
Loading…
Reference in New Issue
Block a user