search for: init_script

Displaying 7 results from an estimated 7 matches for "init_script".

2010 Mar 23
2
[PATCH] Remove initrd patching from oc-boot
.../scripts/ovirt-config-boot +++ b/scripts/ovirt-config-boot @@ -143,53 +143,6 @@ ovirt_boot_setup() { fi fi - # append LVM support to the livecd initramfs - tmpdir=$(mktemp -d) - cd $tmpdir - gzip -dc $live/$syslinux/initrd0.img | - cpio -id init sbin/real-init - init_script=init - if [ -e sbin/real-init ]; then - # Fedora 10 mkliveinitrd - init_script=sbin/real-init - fi - sed -i '/^\/sbin\/udev.*trigger/ a \ -echo SCSI wait for scans\ -/sbin/modprobe scsi_wait_scan\ -/sbin/modprobe -r scsi_wait_scan\ -set +e\ -while true; do\ - echo Scanni...
2009 Sep 05
1
[PATCH node] adjust init script patching for local boot on F11
...--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/scripts/ovirt-config-boot b/scripts/ovirt-config-boot index a40c03a..2961f76 100755 --- a/scripts/ovirt-config-boot +++ b/scripts/ovirt-config-boot @@ -107,7 +107,7 @@ ovirt_boot_setup() { # Fedora 10 mkliveinitrd init_script=sbin/real-init fi - sed -i '/^\/sbin\/udev.*settle/ a \ + sed -i '/^\/sbin\/udev.*trigger/ a \ echo SCSI wait for scans\ /sbin/modprobe scsi_wait_scan\ /sbin/modprobe -r scsi_wait_scan\ @@ -125,8 +125,6 @@ set -e\ ' $init_script # fix emergency shell sed -i '...
2009 Sep 26
10
Adding handling for Multipath storage devices
The following patches introduce support for multipath and cciss devices to the ovirt-node and node-image. Comments are appreciated. These patches assume that the 3 patches (2 node, 1 node-image) from Joey are all incorporated. Mike
2006 Aug 26
2
failed to start
...under category Servers I clicked the link and then clicked "Start Dovecot Server" from the webmin panel and got this error: Failed to start Dovecot : I assume this means a file is missing. My config file looks like this: dovecot=/usr/sbin/dovecot dovecot_config=/etc/dovecot.conf init_script=dovecot pid_file=/var/run/dovecot/master.pid There doesn't appear to be a dovecot directory in: etc/rc.d/init.d/ Perhaps that's the issue? I'm running Redhat Linux 4. Can you assist in any way? Any help is most appreciated. Thanks, Don -------------- next part -------------...
2011 Jan 14
10
Using puppet to redeploy staging app
Hi, I''m building a staging environement and I would like it to be able to redeploy automatically, after each commit - or every hour, some applications. Those applications are right now deployed and set up by puppet. I wonder if I should use puppet to redeploy those applications after each commit, and if I should how trigger, on the puppet, a full redeployement of the application ? --
2009 Dec 08
1
[PATCH node] iscsi remote root basework This lays most of the groundwork for iscsi installation and configuration. At this time configuring iscsi is disabled due to multiple issues with dependent pieces.
...&& cp -p $live/$syslinux/vmlinuz0 $initrd_dest rc=$? if [ $rc -ne 0 ]; then log "image copy failed." @@ -139,17 +172,23 @@ set -e\ # lvm is not static in Fedora cp /lib$bit/libreadline.so.5 /lib$bit/libncurses.so.5 lib$bit fi + find $init_script bin/lvm lib$bit -type f | cpio -H newc --quiet -o | gzip -9 | - cat $live/$syslinux/initrd0.img - > /liveos/initrd0.img + cat $live/$syslinux/initrd0.img - > $initrd_dest/initrd0.img version=$(rpm -q --qf '%{version}' ovirt-node) release=$(r...
2009 Oct 22
0
[PATCH node] merge Root and /boot partitions
.../liveos/LiveOS cp -p $live/LiveOS/squashfs.img /liveos/LiveOS \ - && cp -p $live/$syslinux/vmlinuz0 /boot + && cp -p $live/$syslinux/vmlinuz0 /liveos rc=$? if [ $rc -ne 0 ]; then log "image copy failed." @@ -142,14 +142,14 @@ set -e\ find $init_script bin/lvm lib$bit -type f | cpio -H newc --quiet -o | gzip -9 | - cat $live/$syslinux/initrd0.img - > /boot/initrd0.img + cat $live/$syslinux/initrd0.img - > /liveos/initrd0.img version=$(rpm -q --qf '%{version}' ovirt-node) release=$(rpm -q -...