[PATCH] jail NG schript patch for mounting devfs and procfs automatically
From: Jens Rehsack (rehsack_at_liwing.de)
Date: 07/29/03
- Previous message: Terry Lambert: "Re: STEP 2, fixing dhclient behaviour with multiple interfaces"
- Next in thread: Robert Watson: "Re: [PATCH] jail NG schript patch for mounting devfs and procfs automatically"
- Reply: Robert Watson: "Re: [PATCH] jail NG schript patch for mounting devfs and procfs automatically"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tue, 29 Jul 2003 18:40:26 +0200 To: FreeBSD-Current List <current@freebsd.org>
Hi all, hi Clement,
I updated the rcng jail start script to mount devfs and procfs
into the jail if wanted. Adding entries to /etc/fstab didn't
work properly, because the jail filesystem wasn't mounted when
the startup process wants to mount it.
Going this way allows us to control which jail could be used
via ssh (or another remote shell), too.
Any comments gladly welcome.
If it's useful for FreeBSD, I will write the rc.conf(5) update,
too. Please inform me to do this.
Regards,
Jens
--- etc/rc.d/jail.orig Mon May 5 15:38:41 2003
+++ etc/rc.d/jail Tue Jul 29 14:49:34 2003
@@ -53,6 +53,16 @@
eval jail_hostname=\"\$jail_${_jail}_hostname\"
eval jail_ip=\"\$jail_${_jail}_ip\"
eval jail_exec=\"\$jail_${_jail}_exec\"
+ eval jail_devfs=\"\$jail_${_jail}_mount_devfs\"
+ eval jail_procfs=\"\$jail_${_jail}_mount_procfs\"
+ if [ -n "${jail_devfs}" ] && checkyesno jail_devfs ; then
+ echo "Mounting devfs to ${jail_rootdir}/dev"
+ mount -t devfs devfs ${jail_rootdir}/dev
+ fi;
+ if [ -n "${jail_procfs}" ] && checkyesno jail_procfs ; then
+ echo "Mounting procfs to ${jail_rootdir}/proc"
+ mount -t procfs procfs ${jail_rootdir}/proc
+ fi;
[ -z ${jail_exec} ] && jail_exec="/bin/sh /etc/rc"
jail ${jail_rootdir} ${jail_hostname} ${jail_ip} ${jail_exec}
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"
- Previous message: Terry Lambert: "Re: STEP 2, fixing dhclient behaviour with multiple interfaces"
- Next in thread: Robert Watson: "Re: [PATCH] jail NG schript patch for mounting devfs and procfs automatically"
- Reply: Robert Watson: "Re: [PATCH] jail NG schript patch for mounting devfs and procfs automatically"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|
|