Displaying 9 results from an estimated 9 matches for "network_tests".
Did you mean:
network_test
2009 Nov 03
0
[PATCH server] suggest ip address for nics/bondings on edit host/vm network forms
Provides a mechanism to generate ip addresses for static networks
and prefill the 'ip address' fields of the host and vm networking
forms w/ the first suggested ip.
---
src/app/controllers/vm_controller.rb | 2 +-
src/app/models/ip_address.rb | 52 +++++++++++++++++++++++++++++++++
src/app/models/network.rb | 11 +++++++
src/app/models/physical_network.rb |
2014 Mar 15
4
[supermin 1/2] chroot: Fix corner case introduced with dpkg-divert support
---
src/chroot.ml | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/chroot.ml b/src/chroot.ml
index b5c1e53..9e522d9 100644
--- a/src/chroot.ml
+++ b/src/chroot.ml
@@ -26,7 +26,9 @@ let build_chroot debug files outputdir =
List.iter (
fun file ->
try
- let path = file.ft_source_path in
+ let path = if file_exists file.ft_source_path
+
2014 Mar 05
3
[PATCH 0/2] supermin: fix with no dpkg installed
f093ba80e0918484838dba46a747ffaecf983fb3 caused a regression (startup
failure) when dpkg is not installed.
Simple fix with simple test for it.
Pino Toscano (2):
dpkg: do not always run dpkg_primary_arch
tests: add a basic run test
src/dpkg.ml | 4 ++--
tests/Makefile.am | 3 ++-
tests/test-basic.sh | 28 ++++++++++++++++++++++++++++
3 files changed, 32 insertions(+), 3
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
- db, model, service, controller, and view changes
- many tests additions
- various fixes / cleanup to get things working
depends on my last two (still unacked) patches:
- add collapsable sections to vm form
- provide default vm allocated cpu and memory values
ovirt-agent might need to be updated to work with the changes
---
src/app/controllers/pool_controller.rb | 2 +-
2021 Jan 07
1
HCI Cluster - CentOS8 to Streams Upgrade Broken
I have a test environment. Three node HCI cluster. CentOS8 build.
Gluster as file system with standard cockpit deploy of HCI.
Converted to CentOS Streams which seemed to go fine. Did a yum update and
no issues.
Did a reboot.. and now engine will no longer start. So I can no longer
start my Virtual machines. I posted as bug
https://bugzilla.redhat.com/show_bug.cgi?id=1911910 I posted to
2020 Apr 03
0
[supermin PATCH v2 4/4] build: check for outputs in --if-newer check (RHBZ#1813809)
...it 0
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 42d1b82..070f6d9 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -28,7 +28,8 @@ TESTS = \
test-execstack.sh \
test-build-bash.sh \
test-binaries-exist.sh \
- test-harder.sh
+ test-harder.sh \
+ test-if-newer-ext2.sh
if NETWORK_TESTS
TESTS += \
diff --git a/tests/test-if-newer-ext2.sh b/tests/test-if-newer-ext2.sh
new file mode 100755
index 0000000..4f49bda
--- /dev/null
+++ b/tests/test-if-newer-ext2.sh
@@ -0,0 +1,57 @@
+#!/bin/bash -
+# supermin
+# (C) Copyright 2009-2020 Red Hat Inc.
+#
+# This program is free software; you...
2020 Apr 03
5
[supermin PATCH v2 0/4] Check for output results for --if-newer (RHBZ#1813809)
This is an attempt to make supermin check for the existing results of an
output when checking whether the appliance must be rebuilt using
--if-newer.
At the moment it is implemented only for the ext2 output format of the
build mode.
Changes from v1:
- drop empty stub for the prepare mode
- add patch to ignore --if-newer on modes different than build
- squash patch with stub for the build mode
2020 Apr 03
5
[supermin PATCH 0/4] Check for output results for --if-newer (RHBZ#1813809)
This is an attempt to make supermin check for the existing results of an
output when checking whether the appliance must be rebuilt using
--if-newer.
At the moment it is implemented only for the build mode, and for its
ext2 output format.
Pino Toscano (4):
build: factor ext2 filenames
Tighten Unix_error check for missing outputdir
Extend modes with list of outputs
build: set
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...LES([EXT2FS], [ext2fs])
PKG_CHECK_MODULES([COM_ERR], [com_err])
-dnl Optional ext2fs_close2 function.
+dnl Requires ext2fs_close2 function, added in 2011.
old_LIBS="$LIBS"
LIBS="$EXT2FS_LIBS $COM_ERR_LIBS"
AC_CHECK_FUNCS([ext2fs_close2])
@@ -235,8 +228,6 @@ AM_CONDITIONAL([NETWORK_TESTS],
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([Makefile
examples/Makefile
- helper/Makefile
- lib/Makefile
src/config.ml
src/Makefile
tests/Makefile])
diff --git a/examples/README b/examples/README
new file mode 100644
index 0000000..5e15825
---...