Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] postgres: set PGROOT dir owner to be "postgres". Without this change, the postgres server fails to start on boot.
@ 2016-03-06 20:03 Alan Yaniger
  2016-03-06 20:03 ` [Buildroot] [PATCH 2/2] docs: fix syntax error in makedev-syntax example. In the makedev syntax documentation, one of the examples lacks the "mode" value Alan Yaniger
  0 siblings, 1 reply; 4+ messages in thread
From: Alan Yaniger @ 2016-03-06 20:03 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Alan Yaniger <alan@tkos.co.il>
---
 package/postgresql/postgresql.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/postgresql/postgresql.mk b/package/postgresql/postgresql.mk
index 444c1b1..5906ce9 100644
--- a/package/postgresql/postgresql.mk
+++ b/package/postgresql/postgresql.mk
@@ -17,6 +17,10 @@ POSTGRESQL_CONF_ENV = ac_cv_type_struct_sockaddr_in6=yes \
 POSTGRESQL_AUTORECONF = YES
 POSTGRESQL_CONF_OPTS = --disable-rpath
 
+define POSTGRESQL_PERMISSIONS
+	/var/lib/pgsql d 755 postgres postgres - - - - -
+endef
+
 ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
 # PostgreSQL does not build against uClibc with locales
 # enabled, due to an uClibc bug, see
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] docs: fix syntax error in makedev-syntax example. In the makedev syntax documentation, one of the examples lacks the "mode" value.
  2016-03-06 20:03 [Buildroot] [PATCH 1/2] postgres: set PGROOT dir owner to be "postgres". Without this change, the postgres server fails to start on boot Alan Yaniger
@ 2016-03-06 20:03 ` Alan Yaniger
  2016-03-08 20:20   ` Yann E. MORIN
  0 siblings, 1 reply; 4+ messages in thread
From: Alan Yaniger @ 2016-03-06 20:03 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Alan Yaniger <alan@tkos.co.il>
---
 docs/manual/makedev-syntax.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/manual/makedev-syntax.txt b/docs/manual/makedev-syntax.txt
index 0bbc16e..e4dffc9 100644
--- a/docs/manual/makedev-syntax.txt
+++ b/docs/manual/makedev-syntax.txt
@@ -44,7 +44,7 @@ this syntax, you will need to write:
 ----
 /usr/bin/foo f 755 0 0 - - - - -
 /usr/bin/bar f 755 root root - - - - -
-/data/buz f buz-user buz-group - - - - -
+/data/buz f 644 buz-user buz-group - - - - -
 ----
 
 Alternatively, if you want to change owner/permission of a directory
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] docs: fix syntax error in makedev-syntax example. In the makedev syntax documentation, one of the examples lacks the "mode" value.
  2016-03-06 20:03 ` [Buildroot] [PATCH 2/2] docs: fix syntax error in makedev-syntax example. In the makedev syntax documentation, one of the examples lacks the "mode" value Alan Yaniger
@ 2016-03-08 20:20   ` Yann E. MORIN
  2016-03-09  4:22     ` Baruch Siach
  0 siblings, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2016-03-08 20:20 UTC (permalink / raw)
  To: buildroot

Alan, All,

On 2016-03-06 22:03 +0200, Alan Yaniger spake thusly:
> Signed-off-by: Alan Yaniger <alan@tkos.co.il>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  docs/manual/makedev-syntax.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/docs/manual/makedev-syntax.txt b/docs/manual/makedev-syntax.txt
> index 0bbc16e..e4dffc9 100644
> --- a/docs/manual/makedev-syntax.txt
> +++ b/docs/manual/makedev-syntax.txt
> @@ -44,7 +44,7 @@ this syntax, you will need to write:
>  ----
>  /usr/bin/foo f 755 0 0 - - - - -
>  /usr/bin/bar f 755 root root - - - - -
> -/data/buz f buz-user buz-group - - - - -
> +/data/buz f 644 buz-user buz-group - - - - -
>  ----
>  
>  Alternatively, if you want to change owner/permission of a directory
> -- 
> 1.9.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] docs: fix syntax error in makedev-syntax example. In the makedev syntax documentation, one of the examples lacks the "mode" value.
  2016-03-08 20:20   ` Yann E. MORIN
@ 2016-03-09  4:22     ` Baruch Siach
  0 siblings, 0 replies; 4+ messages in thread
From: Baruch Siach @ 2016-03-09  4:22 UTC (permalink / raw)
  To: buildroot

Hi Yann,

On Tue, Mar 08, 2016 at 09:20:40PM +0100, Yann E. MORIN wrote:
> On 2016-03-06 22:03 +0200, Alan Yaniger spake thusly:
> > Signed-off-by: Alan Yaniger <alan@tkos.co.il>
> 
> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

This patch is marked 'Superseded' in patchwork already. The updated patch is 
at http://patchwork.ozlabs.org/patch/592587/.

baruch

> >  docs/manual/makedev-syntax.txt | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/docs/manual/makedev-syntax.txt b/docs/manual/makedev-syntax.txt
> > index 0bbc16e..e4dffc9 100644
> > --- a/docs/manual/makedev-syntax.txt
> > +++ b/docs/manual/makedev-syntax.txt
> > @@ -44,7 +44,7 @@ this syntax, you will need to write:
> >  ----
> >  /usr/bin/foo f 755 0 0 - - - - -
> >  /usr/bin/bar f 755 root root - - - - -
> > -/data/buz f buz-user buz-group - - - - -
> > +/data/buz f 644 buz-user buz-group - - - - -
> >  ----
> >  
> >  Alternatively, if you want to change owner/permission of a directory

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-03-09  4:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-06 20:03 [Buildroot] [PATCH 1/2] postgres: set PGROOT dir owner to be "postgres". Without this change, the postgres server fails to start on boot Alan Yaniger
2016-03-06 20:03 ` [Buildroot] [PATCH 2/2] docs: fix syntax error in makedev-syntax example. In the makedev syntax documentation, one of the examples lacks the "mode" value Alan Yaniger
2016-03-08 20:20   ` Yann E. MORIN
2016-03-09  4:22     ` Baruch Siach

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox