search for: 44a0270

Displaying 3 results from an estimated 3 matches for "44a0270".

Did you mean: 440270
2009 Sep 29
2
[PATCH node-image] add /var/lib/dnsmasq to rwtab
Virtual networks can now be created and destroyed with a r/o filesystem. Signed-off-by: Michael Burns <mburns at redhat.com> --- common-post.ks | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common-post.ks b/common-post.ks index 44a0270..5531e08 100644 --- a/common-post.ks +++ b/common-post.ks @@ -151,6 +151,7 @@ rm -f /etc/cron.daily/logrotate sed -i '/^files \/etc*/ s/^/#/' /etc/rwtab cat > /etc/rwtab.d/ovirt <<EOF files /etc +dirs /var/lib/dnsmasq files /var/cache/libvirt files /var/cache/hald files /v...
2009 Sep 01
1
[PATCH node-image] readonly rootfs setup
...ootfs, all needed writable directories are in the tmpfs. Signed-off-by: Joey Boggs <jboggs at redhat.com> --- common-post.ks | 12 ++++++++++++ ovirt-node-image.ks | 1 + 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/common-post.ks b/common-post.ks index 0c0a3f4..44a0270 100644 --- a/common-post.ks +++ b/common-post.ks @@ -146,3 +146,15 @@ EOF # Remove the default logrotate daily cron job # since we run it every 10 minutes instead. rm -f /etc/cron.daily/logrotate + +# comment out /etc/* entries in rwtab to prevent overlapping mounts +sed -i '/^files \/etc*/...
2009 Sep 28
1
[PATCH node-image] update rwtab entries for /live, /boot, and /var/lib/random-seed
...share/hwdata/MonitorsDB \ /usr/share/hwdata/oui.txt /usr/share/hwdata/videoaliases \ /usr/share/firstboot /usr/share/lua /usr/share/kde4 /usr/share/pixmaps \ /usr/share/hwdata/videodrivers /usr/share/icons /usr/share/fedora-release \ diff --git a/common-post.ks b/common-post.ks index 44a0270..fcff200 100644 --- a/common-post.ks +++ b/common-post.ks @@ -148,6 +148,9 @@ EOF rm -f /etc/cron.daily/logrotate # comment out /etc/* entries in rwtab to prevent overlapping mounts +touch /var/lib/random-seed +mkdir /live +mkdir /boot sed -i '/^files \/etc*/ s/^/#/' /etc/rwtab cat &g...