Displaying 14 results from an estimated 14 matches for "noappend".
2009 Dec 15
1
[PATCH] The autotest timeout is now a command line configurable option.
...default: no window shown)
-h: display this help and exit
@@ -484,7 +485,7 @@ test_stateless_pxe () {
boot_with_pxe "${nodename}" "standalone firstboot=no" "${workdir}"
expect -c '
-set timeout 120
+set timeout '${timeout_period}'
log_file -noappend stateless-pxe.log
@@ -526,7 +527,7 @@ test_stateless_pxe_with_nohd () {
boot_with_pxe "${nodename}" "firstboot=no" "${workdir}"
expect -c '
-set timeout 120
+set timeout '${timeout_period}'
log_file -noappend stateless-pxe.log
@@ -575,7 +...
2009 May 19
1
[PATCH node-image] Fixing the autotest script.
...r}"
+ configure_node "${nodename}" "network" "" "10000" "" "local noapic=true"
+ boot_with_pxe "${nodename}" "standalone firstboot=no" "${workdir}"
expect -c '
set timeout 120
-log_file -noappend stateless-pxe-nohd.log
+
+log_file -noappend stateless-pxe.log
spawn sudo virsh console '"${nodename}"'
@@ -491,20 +490,18 @@ expect {
-exact "Starting ovirt-early:" { send_log "\n\nMarker 2\n\n"; exp_continue }
-exact "Starting ovirt:"...
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...de "${nodename}" "network" "" "10000" "" "local noapic=true"
+ boot_with_pxe "${nodename}" "standalone firstboot=no" "${workdir}"
+
+ expect -c '
+set timeout '${timeout_period}'
+
+log_file -noappend stateless-pxe.log
+
+spawn sudo virsh console '"${nodename}"'
+
+expect {
+ -exact "Linux version" { send_log "\n\nMarker 1\n\n"; exp_continue }
+ -exact "Starting ovirt-early:" { send_log "\n\nMarker 2\n\n"; exp_continue }
+...
2017 Feb 14
0
[PATCH 09/10] New API: mksquashfs
...turn -1;
+ }
+ close (fd);
+
+ buffer = malloc (GUESTFS_MAX_CHUNK_SIZE);
+ if (buffer == NULL) {
+ reply_with_perror ("malloc/buffer");
+ return -1;
+ }
+
+ ADD_ARG (argv, i, str_mksquashfs);
+ ADD_ARG (argv, i, buf);
+ ADD_ARG (argv, i, tmpfile);
+ ADD_ARG (argv, i, "-noappend");
+ ADD_ARG (argv, i, "-root-becomes");
+ ADD_ARG (argv, i, buf);
+ ADD_ARG (argv, i, "-wildcards");
+ ADD_ARG (argv, i, "-no-recovery");
+
+ if (optargs_bitmask & GUESTFS_MKSQUASHFS_COMPRESS_BITMASK) {
+ ADD_ARG (argv, i, "-comp");
+ ADD...
2009 Aug 03
0
[PATCH node-image] Fix edit-livecd to re-create ext2 filesystem each time
...gt;>> Min ext3fs Size: $(du -b $WDIR/ext3fs-min.img)"
+
+# Move the minimized ext2 filesystem into the squash directory
+mv -v $WDIR/ext3fs-min.img $WDIR/sq-w/LiveOS/ext3fs.img
+
echo ">>> Compressing filesystem"
mksquashfs $WDIR/sq-w/ $WDIR/cd-w/LiveOS/squashfs.img -noappend
+echo ">>> New Squash Size: $(du -b $WDIR/cd-w/LiveOS/squashfs.img)"
+
echo ">>> Recomputing MD5 sums"
( cd $WDIR/cd-w && find . -type f -not -name md5sum.txt \
-not -path '*/isolinux/*' -print0 | xargs -0 -- md5sum > md5sum.txt )
@@...
2009 Aug 20
3
[PATCH ovirt-node-image] fixes for edit-livecd
Patch set fixes issues with image size increase when using edit-livecd
Also address issue with ext4 root fs
2009 Sep 22
1
[PATCH] edit-livecd in python
..."*** Did you forget to 'cd' out of $WDIR/ex?"
- echo "***"
- echo "*** Press any key to repeat the attempt."
- echo "***"
- read
-done
-
-echo ">>> Compressing filesystem"
-mksquashfs $WDIR/sq-w/ $WDIR/cd-w/LiveOS/squashfs.img -noappend
-
-echo ">>> Recomputing MD5 sums"
-( cd $WDIR/cd-w && find . -type f -not -name md5sum.txt \
- -not -path '*/isolinux/*' -print0 | xargs -0 -- md5sum > md5sum.txt )
-
-if [ -n "$PARAMS" ]; then
- case $PARAMS in
- *@*) warn "PARAMS co...
2017 Feb 14
14
[PATCH 00/10] dib/API: improvements and fixes
Hi,
this patch series does changes mostly in virt-dib, few bug fixes and
a couple of new features (mostly implemented upstream already).
In addition, one new API is added, and a new optional argument for an
existing API is added (the latter is not needed, but could be useful
anyway).
Thanks,
Pino Toscano (10):
dib: fix listing envvars in fake-sudo
dib: source dib "die" script in
2009 Oct 14
4
Refactor ovirt-node-image code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora.
Removed ks files, now in ovirt-node-recipe, which is subpackage of ovirt-node.
Removed tools, these are now in ovirt-node-recipe which is subpackage of
ovirt-node.
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora.
Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe.
Removes old sub packages form ovirt-node, stateless, logos, selinux.
Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221
Added License file.
2017 Jul 27
0
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
...itmask. */
@@ -80,7 +78,7 @@ do_mksquashfs (const char *path, const char *compress, char *const *excludes)
return -1;
}
- ADD_ARG (argv, i, str_mksquashfs);
+ ADD_ARG (argv, i, "mksquashfs");
ADD_ARG (argv, i, buf);
ADD_ARG (argv, i, tmpfile);
ADD_ARG (argv, i, "-noappend");
diff --git a/daemon/swap.c b/daemon/swap.c
index fea4a9dcf..a00937292 100644
--- a/daemon/swap.c
+++ b/daemon/swap.c
@@ -31,11 +31,6 @@
#include "ignore-value.h"
-GUESTFSD_EXT_CMD(str_mkswap, mkswap);
-GUESTFSD_EXT_CMD(str_swapon, swapon);
-GUESTFSD_EXT_CMD(str_swapoff, swapo...
2017 Jul 24
0
[PATCH 2/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
...itmask. */
@@ -80,7 +80,7 @@ do_mksquashfs (const char *path, const char *compress, char *const *excludes)
return -1;
}
- ADD_ARG (argv, i, str_mksquashfs);
+ ADD_ARG (argv, i, "mksquashfs");
ADD_ARG (argv, i, buf);
ADD_ARG (argv, i, tmpfile);
ADD_ARG (argv, i, "-noappend");
diff --git a/daemon/swap.c b/daemon/swap.c
index fea4a9dcf..30b37d9a6 100644
--- a/daemon/swap.c
+++ b/daemon/swap.c
@@ -31,10 +31,7 @@
#include "ignore-value.h"
-GUESTFSD_EXT_CMD(str_mkswap, mkswap);
-GUESTFSD_EXT_CMD(str_swapon, swapon);
-GUESTFSD_EXT_CMD(str_swapoff, swapo...
2017 Jul 27
3
[PATCH v2] daemon: Remove GUESTFSD_EXT_CMD.
This is a simpler patch that removes GUESTFSD_EXT_CMD completely.
2017 Jul 24
6
[PATCH 0/2] daemon: Replace GUESTFSD_EXT_CMD with --print-external-commands.
Replace GUESTFSD_EXT_CMD with a command line option
‘./guestfsd --print-external-commands’