Re: BUG #15596: Folders created with wrong permissions when installing an extension with a non-default umask

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #15596: Folders created with wrong permissions when installing an extension with a non-default umask
Дата
Msg-id 3966.1547692421@sss.pgh.pa.us
обсуждение исходный текст
Ответ на BUG #15596: Folders created with wrong permissions when installing anextension with a non-default umask  (PG Bug reporting form <noreply@postgresql.org>)
Ответы Re: BUG #15596: Folders created with wrong permissions wheninstalling an extension with a non-default umask  (Antoine Amarilli <a3nm.postgresql@a3nm.net>)
Список pgsql-bugs
=?utf-8?q?PG_Bug_reporting_form?= <noreply@postgresql.org> writes:
> However, the umask of my user is 077, so these "mkdir -p" invocations are
> creating folders that can only be read by root, which is not the intended
> behavior.

So ... don't do that.

> Would it be possible to fix this by redefining MKDIR_P="mkdir -m 0755 -p" in
> pgxs.mk so that the mkdir invocations create the folders with the right
> permissions, in line with the "install" invocations? Thanks!

I think that would be a pretty bad idea, because it would break things
for packagers who have their own ideas about what the directory
permissions ought to be.

You can, of course, enforce your own ideas on the make run with something
like (untested)

    make MKDIR_P="mkdir -m 0755 -p" install

            regards, tom lane


В списке pgsql-bugs по дате отправления:

Предыдущее
От: Andrew Gierth
Дата:
Сообщение: Re: BUG #15595: matchctx->npatterns is always 1 no matter pattern have 0 or 1 subexpression
Следующее
От: Antoine Amarilli
Дата:
Сообщение: Re: BUG #15596: Folders created with wrong permissions wheninstalling an extension with a non-default umask