|
|
|
|
|
|
|
|
|
|
xen-users
RE: [Xen-users] XCP noob question
Hi Marco:
Thank you very much. That is exactly what I needed to know.
Do you know whether this is documented anywhere? I tried to read
everything I could get my hands on before posting this question but I
didn't see it. BTW, it is perfectly fine if the documentation is only in
the source code somewhere, I just need a hint or two about where to look
before posting my next NOOB question :-)
Cheers,
Joe
-----Original Message-----
From: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
[mailto:xen-users-bounces@xxxxxxxxxxxxxxxxxxx] On Behalf Of Marco
Nenciarini
Sent: Friday, November 26, 2010 1:29 AM
To: xen-users@xxxxxxxxxxxxxxxxxxx
Subject: Re: [Xen-users] XCP noob question
On 25/11/2010 17:02, Joe Linoff wrote:
>
>
> Hi Folks:
>
>
>
> Where is the root filesystem mounted when the answerfile
> post-install-script is executed? I want to create a directory tree
> called /opt/foo/bar.
>
>
>
> I read here (http://www.cmschill.net/StringTheory/tag/installation/)
> that the root filesystem was mounted under /tmp/root but I didn't see
> any confirmation in the documentation.
>
The root mountpoint is passed as first argument of post-install-script.
The following code should do the trick.
------------------------------------------------
#!/bin/bash
ROOT=$1
mkdir -p $ROOT/opt/foo/bar
------------------------------------------------
Regards,
Marco
--
---------------------------------------------------------------------
| Marco Nenciarini | Debian/GNU Linux Developer - Plug Member |
| mnencia@xxxxxxxxxxxxxx | http://www.prato.linux.it/~mnencia |
---------------------------------------------------------------------
Key fingerprint = FED9 69C7 9E67 21F5 7D95 5270 6864 730D F095 E5E4
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|