search for: min_version

Displaying 18 results from an estimated 18 matches for "min_version".

Did you mean: minor_version
2010 Oct 24
1
Re: [Rails-core] Re: (Unable to start rails application) ruby scipt/server error
...if defined? RAILS_GEM_VERSION RAILS_GEM_VERSION elsif ENV.include?(''RAILS_GEM_VERSION'') ENV[''RAILS_GEM_VERSION''] else parse_gem_version(read_environment_rb) end end def load_rubygems min_version = ''1.3.2'' require ''rubygems'' unless rubygems_version >= min_version $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.) exit 1 end...
2013 Sep 24
5
[PATCH 0/4] Add SUSE guest converter to virt-v2v
This is a new conversion module to convert SUSE Linux and openSUSE guests. The converter is based on the RedHat module, and should offer the same functionality on both SUSE and RedHat hosts. There are a few additional messages in this module, such as reporting of packages when installing through zypper or the local virt-v2v repo. These messages don't necessarily flow unless verbose switches
2011 Apr 26
7
[PATCH 1/7] Push $desc creation into Sys::VirtConvert::Converter->convert
This change is part of an ongoing effort to remove use of $desc and inspect the OS directly as required during conversion. --- lib/Sys/VirtConvert/Connection/LibVirtTarget.pm | 4 +- lib/Sys/VirtConvert/Connection/RHEVTarget.pm | 41 +++++++++--------- lib/Sys/VirtConvert/Converter.pm | 35 ++++++++++++---- lib/Sys/VirtConvert/Converter/RedHat.pm | 45
2013 Sep 24
0
[PATCH 3/4] Add SUSE converter
...; + return 0; + } + + my @install; + my @update; + my $kernel; + foreach my $name (keys(%$cap)) { + my $props = $cap->{$name}; + my $ifinstalled = $props->{ifinstalled}; + + # Parse epoch, version and release from minversion + my ($min_epoch, $min_version, $min_release); + if (exists($props->{minversion})) { + eval { + ($min_epoch, $min_version, $min_release) = + _parse_evr($props->{minversion}); + }; + v2vdie __x('Unrecognised format for {field} in config: '. +...
2013 Sep 25
5
Re: [PATCH 3/4] Add SUSE converter
...nstall; > + my @update; > + my $kernel; > + foreach my $name (keys(%$cap)) { > + my $props = $cap->{$name}; > + my $ifinstalled = $props->{ifinstalled}; > + > + # Parse epoch, version and release from minversion > + my ($min_epoch, $min_version, $min_release); > + if (exists($props->{minversion})) { > + eval { > + ($min_epoch, $min_version, $min_release) = > + _parse_evr($props->{minversion}); > + }; > + v2vdie __x('Unrecognised format fo...
2013 Oct 03
2
[PATCH] virt-v2v: Convert RedHat.pm to Linux.pm - for SUSE support
...+ return 0; + } + + my @install; + my @upgrade; + my $kernel; + foreach my $name (keys(%$cap)) { + my $props = $cap->{$name}; + my $ifinstalled = $props->{ifinstalled}; + + # Parse epoch, version and release from minversion + my ($min_epoch, $min_version, $min_release); + if (exists($props->{minversion})) { + eval { + ($min_epoch, $min_version, $min_release) = + _parse_evr($props->{minversion}); + }; + v2vdie __x('Unrecognised format for {field} in config: '. +...
2010 Oct 22
6
(Unable to start rails application) ruby scipt/server error
1) I installed the ruby-1.9.2-p0 and rubygems-1.3.7 in the (/usr/local/src directory ) 2) Then i installed rails from terminal by typing follwoing sudo gem install rails --include-dependencies 3) Then i made a rails applcation from terminal as rails new demo then cd demo ruby
2015 Jan 08
3
Smbd dumps core while starting
...9a00d0 (26869968) task_id : 0x00000000 (0) vnn : 0xffffffff (4294967295) unique_id : 0x8063dd929538eac5 (-9195262392521921851) min_version : SMBXSRV_VERSION_0 (0) max_version : SMBXSRV_VERSION_0 (0) current_version : SMBXSRV_VERSION_0 (0) [2015/01/08 21:50:30.096418, 5, pid=26869968, effective(0, 0), real(0, 0)] ../source3/lib/messages.c:293(mes...
2020 Sep 24
4
[PATCH v2v 0/4] v2v: vcenter: Implement cookie scripts.
Patch 1 was previously posted here: https://www.redhat.com/archives/libguestfs/2020-June/msg00086.html to handle this bug: https://bugzilla.redhat.com/show_bug.cgi?id=1848862 I was able to observe this bug and for me at least disabling readahead seems to cure it. Patches 2 and 3 are simplifications, removing a now-undocumented feature of virt-v2v-copy-to-local and thus simplifying greatly the
2015 Jan 08
3
Smbd dumps core while starting
Only looking for file server solution. export LIBPATH=/opt/samba/lib /opt/samba/sbin/smbd ?D cat smb.conf [global] security = ads password server = * workgroup = ABC.NET username map = /etc/opt/samba/users.map encrypt passwords = yes client ntlmv2 auth = yes client lanman auth = no client plaintext auth = no lanman auth = no ntlm auth = no server signing = auto max protocol = SMB2 ;Enter
2010 May 19
8
RHN support and capabilities
This patch series includes a repost of Milan's unmodified RHN support patch because I haven't pushed it yet. On top of that patch, it includes the capabilities patch in as many bits as I could make it into. The big one is 7/8. I've tested all of the following guests both with and without RHN registration: Xen RHEL 54 PV Xen RHEL 51 PV Xen RHEL 48 PV ESX RHEL 54 FV
2015 Jan 08
0
Smbd dumps core while starting
...: 0x00000000019a00d0 (26869968) >> >> task_id : 0x00000000 (0) >> >> vnn : 0xffffffff (4294967295) >> >> unique_id : 0x8063dd929538eac5 (-9195262392521921851) >> >> min_version : SMBXSRV_VERSION_0 (0) >> >> max_version : SMBXSRV_VERSION_0 (0) >> >> current_version : SMBXSRV_VERSION_0 (0) >> >> [2015/01/08 21:50:30.096418, 5, pid=26869968, effective(0, 0), >> real(0, 0)] ../s...
2015 Oct 29
7
[PATCH 0/7] v2v: Miscellaneous refactorings.
Just refactoring. Rich.
2006 Jun 05
2
[PATCH] Pet peave then->than
....po file used to generate the cat-id-tbl.c file Index: source/wrepl_server/wrepl_server.c =================================================================== --- source/wrepl_server/wrepl_server.c (revision 16046) +++ source/wrepl_server/wrepl_server.c (working copy) @@ -320,7 +320,7 @@ /* the min_version is always 0 here, and won't be updated */ - /* if the given version is higher the then current nax_version, update */ + /* if the given version is higher than the current max_version, update */ if (cur->owner.max_version < version) { cur->owner.max_version = version; /* if it...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...@ -82,14 +83,14 @@ module Rails def load_rubygems require 'rubygems' - - unless rubygems_version >= '0.9.4' - $stderr.puts %(Rails requires RubyGems >= 0.9.4 (you have #{rubygems_version}). Please `gem update --system` and try again.) + min_version = '1.3.1' + unless rubygems_version >= min_version + $stderr.puts %Q(Rails requires RubyGems >= #{min_version} (you have #{rubygems_version}). Please `gem update --system` and try again.) exit 1 end rescue LoadError - $stderr.puts %(...
2013 Oct 07
3
Re: [PATCH] virt-v2v: Convert RedHat.pm to Linux.pm - for SUSE support
On Friday, October 04, 2013 09:38:58 AM Matthew Booth wrote: > It's specifically an error if we're attempting to configure virtio, and > there's no detected virtio kernel. It shouldn't have been possible to > get here in that state, hence it's a programmer error. The code below > attempts to install *any* kernel in the case that we aren't configuring >
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server
2013 Oct 11
2
Re: [PATCH] virt-v2v: Convert RedHat.pm to Linux.pm - for SUSE support
...$kernel_release = $1; } @@ -1574,7 +1740,8 @@ sub _install_capability my ($epoch, $version, $release) = @$app; if (_evr_cmp($app->[0], $app->[1], $app->[2], - $min_epoch, $min_version, $min_release) >= 0) { + $min_epoch, $min_version, $min_release) >= 0) + { $found = 1; last; } @@ -1631,14 +1798,22 @@ sub _install_any # If we're installing a...