| 127 | == Know Issue of DRBL () with Xen == |
| 128 | |
| 129 | * Issue 1: Xen DormU Client will need /boot which in only on DRBL Server |
| 130 | * Patch: |
| 131 | {{{ |
| 132 | #!diff |
| 133 | --- /opt/drbl/sbin/drbl-nfs-exports.org 2008-07-28 22:09:43.000000000 +0800 |
| 134 | +++ /opt/drbl/sbin/drbl-nfs-exports 2008-07-28 22:10:06.000000000 +0800 |
| 135 | @@ -135,6 +135,7 @@ |
| 136 | for subnet in $subnet_list; do |
| 137 | cat <<EOF >> $nfs_exports |
| 138 | $drbl_common_root $subnet.*($EXPORTS_NFS_RO_NRS_OPT) |
| 139 | +/root $subnet.*($EXPORTS_NFS_RO_NRS_OPT) |
| 140 | /usr $subnet.*($EXPORTS_NFS_RO_NRS_OPT) |
| 141 | /opt $subnet.*($EXPORTS_NFS_RO_NRS_OPT) |
| 142 | /home $subnet.*($EXPORTS_NFS_RW_NRS_OPT) |
| 143 | @@ -169,6 +170,7 @@ |
| 144 | for ip in `get-client-ip-list`; do |
| 145 | cat <<EOF >> $nfs_exports |
| 146 | $drbl_common_root $ip($EXPORTS_NFS_RO_NRS_OPT) |
| 147 | +/root $ip($EXPORTS_NFS_RO_NRS_OPT) |
| 148 | /usr $ip($EXPORTS_NFS_RO_NRS_OPT) |
| 149 | /opt $ip($EXPORTS_NFS_RO_NRS_OPT) |
| 150 | /home $ip($EXPORTS_NFS_RW_NRS_OPT) |
| 151 | }}} |
| 152 | * Run '''/opt/drbl/sbin/dcs -> re-deploy''' or '''/opt/drbl/sbin/drblpush -c /etc/drbl/drblpush.conf''' to replace current '''/etc/exports'''. |
| 153 | |