Re: Problems running regression tests
- From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
- To: "Karl O. Pinc" <kop(at)meme(dot)com>
- Cc: pgsql-general(at)postgresql(dot)org
- Subject: Re: Problems running regression tests
- Date: Fri, 24 Mar 2006 23:07:24 -0500
- Message-id: <14208(dot)1143259644(at)sss(dot)pgh(dot)pa(dot)us>
"Karl O. Pinc" <kop(at)meme(dot)com> writes:
> /usr/bin/chcon: can't apply partial context to unlabeled file testtablespace
> /usr/bin/chcon: can't apply partial context to unlabeled file results
> The Makefile has
> [ -x /usr/bin/chcon ] && /usr/bin/chcon -t postgresql_db_t testtablespace results
Does it work better if you change that to
[ -x /usr/bin/chcon ] && /usr/bin/chcon -u user_u -r object_r -t postgresql_db_t testtablespace results
? I recall we had a similar issue in the initscript ...
regards, tom lane
Home |
Main Index |
Thread Index