Re: FreeBSD 8.1-PRERELEASE: property 'jailed' not supported on FreeBSD: permission denied

2010-05-31 Thread Pawel Jakub Dawidek
On Fri, May 21, 2010 at 03:55:59PM +0400, Eugene Mitrofanov wrote:
 Hi
 
 The command zfs set jailed=on tank/s1 is failed with the message 
 property 'jailed' not supported on FreeBSD: permission denied.
 
 Output of zfs get jailed tank/s1 shows me that the property jailed is 
 still exists:
 NAME PROPERTY  VALUESOURCE
 tank/s1  jailedoff  default
 
 How can I change its value?

It was accidentally marked as OpenSolaris-specific.

Should be fixed as of r208684 in HEAD and I plan to merge it to stable/8
in few days.

Thanks for the report!

-- 
Pawel Jakub Dawidek   http://www.wheelsystems.com
p...@freebsd.org   http://www.FreeBSD.org
FreeBSD committer Am I Evil? Yes, I Am!


pgpWpZWCOlJQ4.pgp
Description: PGP signature


Re: FreeBSD 8.1-PRERELEASE: property 'jailed' not supported on FreeBSD: permission denied

2010-05-31 Thread Brandon Gooch
On Mon, May 31, 2010 at 6:32 PM, Pawel Jakub Dawidek p...@freebsd.org wrote:
 On Fri, May 21, 2010 at 03:55:59PM +0400, Eugene Mitrofanov wrote:
 Hi

 The command zfs set jailed=on tank/s1 is failed with the message 
 property 'jailed' not supported on FreeBSD: permission denied.

 Output of zfs get jailed tank/s1 shows me that the property jailed is
 still exists:
 NAME     PROPERTY  VALUE    SOURCE
 tank/s1  jailed    off      default

 How can I change its value?

 It was accidentally marked as OpenSolaris-specific.

 Should be fixed as of r208684 in HEAD and I plan to merge it to stable/8
 in few days.

 Thanks for the report!

I discovered this just last night (May 30, 2010) -- will it be able to
be pushed into 8.1-RELEASE? It's important in my ezjail setups...

-Brandon
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD 8.1-PRERELEASE: property 'jailed' not supported on FreeBSD: permission denied

2010-05-24 Thread Eugene Mitrofanov
On Saturday 22 May 2010, jhell wrote:
 On 05/21/2010 07:55, Eugene Mitrofanov wrote:
  Hi
  
  The command zfs set jailed=on tank/s1 is failed with the message 
  property 'jailed' not supported on FreeBSD: permission denied.
  
  Output of zfs get jailed tank/s1 shows me that the property jailed is 
  still exists:
  NAME PROPERTY  VALUESOURCE
  tank/s1  jailedoff  default
  
  How can I change its value?
  
  Thanks.
 
 Simply put,
 
 property 'jailed' not supported on FreeBSD.
 
 Some features that you may see in a zfs get all pool will not work
 because they are not implemented yet or are not planned to be
 implemented because they are too *Solaris dependent.
 

But this feature was in 7S and in 8.0R:

r...@donkey:samba33# uname -sr
FreeBSD 7.3-RELEASE
r...@donkey:samba33# zfs set jailed=on data/test
r...@donkey:samba33# zfs get jailed data/test
NAME   PROPERTY  VALUE  SOURCE
data/test  jailedon local

When I updated to 8.1PRE it stopped working. Are there any plans for the 
revival of jailed?

Good luck
-- 
EMIT-RIPN, EVM7-RIPE
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD 8.1-PRERELEASE: property 'jailed' not supported on FreeBSD: permission denied

2010-05-24 Thread Jeremy Chadwick
On Mon, May 24, 2010 at 10:13:28AM +0400, Eugene Mitrofanov wrote:
 On Saturday 22 May 2010, jhell wrote:
  On 05/21/2010 07:55, Eugene Mitrofanov wrote:
   Hi
   
   The command zfs set jailed=on tank/s1 is failed with the message 
   property 'jailed' not supported on FreeBSD: permission denied.
   
   Output of zfs get jailed tank/s1 shows me that the property jailed is 
   still exists:
   NAME PROPERTY  VALUESOURCE
   tank/s1  jailedoff  default
   
   How can I change its value?
   
   Thanks.
  
  Simply put,
  
  property 'jailed' not supported on FreeBSD.
  
  Some features that you may see in a zfs get all pool will not work
  because they are not implemented yet or are not planned to be
  implemented because they are too *Solaris dependent.
  
 
 But this feature was in 7S and in 8.0R:
 
 r...@donkey:samba33# uname -sr
 FreeBSD 7.3-RELEASE
 r...@donkey:samba33# zfs set jailed=on data/test
 r...@donkey:samba33# zfs get jailed data/test
 NAME   PROPERTY  VALUE  SOURCE
 data/test  jailedon local
 
 When I updated to 8.1PRE it stopped working. Are there any plans for the 
 revival of jailed?

ZFS_PROP_ZONED (property jailed) was explicitly added to the
not-supported-on-FreeBSD property list as of 5 weeks ago per MFC
r197867.  See commit 1.4.2.4 to RELENG_8 here:

http://www.freebsd.org/cgi/cvsweb.cgi/src/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c

And the piece which was committed to HEAD:

http://svn.freebsd.org/viewvc/base?view=revisionrevision=197867

CC'ing responsible committers to answer your question.

-- 
| Jeremy Chadwick   j...@parodius.com |
| Parodius Networking   http://www.parodius.com/ |
| UNIX Systems Administrator  Mountain View, CA, USA |
| Making life hard for others since 1977.  PGP: 4BD6C0CB |

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD 8.1-PRERELEASE: property 'jailed' not supported on FreeBSD: permission denied

2010-05-24 Thread jhell
On 05/24/2010 02:13, Eugene Mitrofanov wrote:
 On Saturday 22 May 2010, jhell wrote:
 On 05/21/2010 07:55, Eugene Mitrofanov wrote:
 Hi

 The command zfs set jailed=on tank/s1 is failed with the message 
 property 'jailed' not supported on FreeBSD: permission denied.

 Output of zfs get jailed tank/s1 shows me that the property jailed is 
 still exists:
 NAME PROPERTY  VALUESOURCE
 tank/s1  jailedoff  default

 How can I change its value?

 Thanks.

 Simply put,

 property 'jailed' not supported on FreeBSD.

 Some features that you may see in a zfs get all pool will not work
 because they are not implemented yet or are not planned to be
 implemented because they are too *Solaris dependent.

 
 But this feature was in 7S and in 8.0R:
 
 r...@donkey:samba33# uname -sr
 FreeBSD 7.3-RELEASE
 r...@donkey:samba33# zfs set jailed=on data/test
 r...@donkey:samba33# zfs get jailed data/test
 NAME   PROPERTY  VALUE  SOURCE
 data/test  jailedon local
 
 When I updated to 8.1PRE it stopped working. Are there any plans for the 
 revival of jailed?
 
 Good luck

And what exactly did that property do for you... ?||? AFAIK it was a NOP.

-- 

 jhell
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD 8.1-PRERELEASE: property 'jailed' not supported on FreeBSD: permission denied

2010-05-24 Thread Eugene Mitrofanov
On Monday 24 May 2010, jhell wrote:
 On 05/24/2010 02:13, Eugene Mitrofanov wrote:
  On Saturday 22 May 2010, jhell wrote:
  On 05/21/2010 07:55, Eugene Mitrofanov wrote:
  Hi
 
  The command zfs set jailed=on tank/s1 is failed with the message 
  property 'jailed' not supported on FreeBSD: permission denied.
 
  Output of zfs get jailed tank/s1 shows me that the property jailed 
is 
  still exists:
  NAME PROPERTY  VALUESOURCE
  tank/s1  jailedoff  default
 
  How can I change its value?
 
  Thanks.
 
  Simply put,
 
  property 'jailed' not supported on FreeBSD.
 
  Some features that you may see in a zfs get all pool will not work
  because they are not implemented yet or are not planned to be
  implemented because they are too *Solaris dependent.
 
  
  But this feature was in 7S and in 8.0R:
  
  r...@donkey:samba33# uname -sr
  FreeBSD 7.3-RELEASE
  r...@donkey:samba33# zfs set jailed=on data/test
  r...@donkey:samba33# zfs get jailed data/test
  NAME   PROPERTY  VALUE  SOURCE
  data/test  jailedon local
  
  When I updated to 8.1PRE it stopped working. Are there any plans for the 
  revival of jailed?
  
  Good luck
 
 And what exactly did that property do for you... ?||? AFAIK it was a NOP.
 
 -- 
 
  jhell
 
 

I want to set up something like described in 
http://unix.derkeiler.com/Mailing-Lists/FreeBSD/hackers/2009-12/msg00028.html

-- 
EMIT-RIPN, EVM7-RIPE
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: FreeBSD 8.1-PRERELEASE: property 'jailed' not supported on FreeBSD: permission denied

2010-05-22 Thread jhell
On 05/21/2010 07:55, Eugene Mitrofanov wrote:
 Hi
 
 The command zfs set jailed=on tank/s1 is failed with the message 
 property 'jailed' not supported on FreeBSD: permission denied.
 
 Output of zfs get jailed tank/s1 shows me that the property jailed is 
 still exists:
 NAME PROPERTY  VALUESOURCE
 tank/s1  jailedoff  default
 
 How can I change its value?
 
 Thanks.

Simply put,

property 'jailed' not supported on FreeBSD.

Some features that you may see in a zfs get all pool will not work
because they are not implemented yet or are not planned to be
implemented because they are too *Solaris dependent.

See jail(1) for setting up a jail on FreeBSD.

-- 

 jhell
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


FreeBSD 8.1-PRERELEASE: property 'jailed' not supported on FreeBSD: permission denied

2010-05-21 Thread Eugene Mitrofanov
Hi

The command zfs set jailed=on tank/s1 is failed with the message 
property 'jailed' not supported on FreeBSD: permission denied.

Output of zfs get jailed tank/s1 shows me that the property jailed is 
still exists:
NAME PROPERTY  VALUESOURCE
tank/s1  jailedoff  default

How can I change its value?

Thanks.
-- 
EMIT-RIPN, EVM7-RIPE
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org