search for: export_ok

Displaying 10 results from an estimated 10 matches for "export_ok".

Did you mean: expect_ok
2009 Aug 19
2
[PATCH] Export inspect_linux_kernel in Lib.pm
...| 38 +++++++++++++++++++++++++------------- 1 files changed, 25 insertions(+), 13 deletions(-) diff --git a/perl/lib/Sys/Guestfs/Lib.pm b/perl/lib/Sys/Guestfs/Lib.pm index 1f84bc6..dfa79af 100644 --- a/perl/lib/Sys/Guestfs/Lib.pm +++ b/perl/lib/Sys/Guestfs/Lib.pm @@ -66,7 +66,8 @@ use vars qw(@EXPORT_OK @ISA); @ISA = qw(Exporter); @EXPORT_OK = qw(open_guest get_partitions resolve_windows_path inspect_all_partitions inspect_partition - inspect_operating_systems mount_operating_system inspect_in_detail); + inspect_operating_systems mount_operating_system inspect_in_detail + inspect_linux_ker...
2013 Oct 11
9
[PATCH OSSTEST 0/6] Support for serial logs from marilith boxes
The marilith boxes use a conserver (http://www.conserver.com/) setup for serial access. Our installation exports the logs via http allowing us to grab them with wget. Sending debug keys with is handled separately via xenuse. xenuse ultimately speaks to the conserver too but it abstracts away the IP and port to use so this is preferred. With these changes the correct Serial hostprop for a
2004 Sep 22
1
Protocol negotation failed
...39;localhost' or reference it by IP. If you can tell me what I have missed it would be greatly appreciated. I have been following the HOWTO step-by-step and I'm not sure what I missed. Thanks, Misty smbldap_conf.pm: use strict; package smbldap_conf; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $UID_START $GID_START $smbpasswd $slaveLDAP $masterLDAP $slavePort $masterPort $ldapSSL $slaveURI $masterURI $with_smbpasswd $mk_ntpasswd $ldap_path $ldap_opts $ldapmodify $suffix $usersdn $computersdn...
2003 May 23
0
LDAP tools for samba 3.24 schema
...crips smbLDAP from idealx apply this patch to smbldap_tools.pm, to use with samba 3.24 schema. Regards --- samba/smbldap-tools/smbldap_tools.pm 2002-06-01 06:30:48.000000000 +0200 +++ smbldap_tools.pm 2003-05-23 13:43:53.000000000 +0200 @@ -31,6 +31,16 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); use Exporter; $VERSION = 1.00; + + +# Put your own SID, this section may be in smbldap_conf.pm +# to obtain this number do: # net getlocalsid +my ( $SID ); +$SID = 'replace with your SID number'; + + + + @ISA = qw(Exporter); @EXPORT = qw( @@ -116,7 +126,7 @@ sub is_sam...
2003 May 23
0
LDAP tools for SAMBA 3.24 corrected
...tp://www.martinaditrento.com ----------------------------------- -------------- next part -------------- --- samba/smbldap-tools/smbldap_tools.pm 2002-06-01 06:30:48.000000000 +0200 +++ smbldap_tools.pm 2003-05-23 13:43:53.000000000 +0200 @@ -31,6 +31,16 @@ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); use Exporter; $VERSION = 1.00; + + +# Put your own SID, this section may be in smbldap_conf.pm +# to obtain this number do: # net getlocalsid +my ( $SID ); +$SID = 'replace with your SID number'; + + + + @ISA = qw(Exporter); @EXPORT = qw( @@ -116,7 +126,7 @@ sub is_sam...
2002 Sep 08
2
sambaldap tools
...e received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # Purpose : # . be the configuration file for all smbldap-tools scripts use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $UID_START $GID_START $smbpasswd $slaveLDAP $masterLDAP $with_smbpasswd $mk_ntpasswd $ldap_path $ldap_opts $ldapsearch $ldapsearchnobind $ldapmodify $ldappasswd $ldapadd $ldapdelete $ldapmodrdn $suffix $usersdn $computersdn $groupsdn $scope $binddn $bindpasswd $slaveDN $slavePw $master...
2010 Jul 28
3
Create new Sys::VirtV2V::Util
These 2 patches are mostly code motion. They were prompted by an apparent augeas error in BZ 613967 which didn't display useful error message. The error seems to happen in Converter::Linux. GuestOS::RedHat had a handy function which displayed verbose augeas error messages. This function moves into the new module where it can be used by both modules. The second patch is an consequential tidy
2003 Dec 01
1
Fw: PDC/LDAP/SAMBA3/NT4
...copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # Purpose : # . be the configuration file for all smbldap-tools scripts use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $UID_START $GID_START $smbpasswd $slaveLDAP $masterLDAP $slavePort $masterPort $ldapSSL $slaveURI $masterURI $with_smbpasswd $mk_ntpasswd $ldap_path $ldap_opts $ldapmodify $suffix $usersdn $computersdn $groupsdn $scope $binddn $bindpasswd $slaveDN $slavePw $masterDN $masterPw $_userLog...
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...Sys/VirtV2V/Util.pm index 699899a..4aab8af 100644 --- a/lib/Sys/VirtV2V/Util.pm +++ b/lib/Sys/VirtV2V/Util.pm @@ -20,13 +20,16 @@ package Sys::VirtV2V::Util; use strict; use warnings; +use Sys::Virt; +use XML::DOM; + use Locale::TextDomain 'virt-v2v'; require Exporter; use vars qw(@EXPORT_OK @ISA); @ISA = qw(Exporter); - at EXPORT_OK = qw(augeas_error user_message); + at EXPORT_OK = qw(augeas_error user_message parse_libvirt_volinfo); =pod @@ -128,6 +131,42 @@ sub user_message return __x("virt-v2v: {message}\n", message => $msg); } +=item parse_libvirt_voli...
2003 Jun 04
2
Samba LDAP Primary Domain Controller
...copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # Purpose : # . be the configuration file for all smbldap-tools scripts use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $UID_START $GID_START $smbpasswd $slaveLDAP $masterLDAP $with_smbpasswd $mk_ntpasswd $ldap_path $ldap_opts $ldapsearch $ldapsearchnobind $ldapmodify $ldappasswd $ldapadd $ldapdelete $ldapmodrdn $suffix $usersdn $computersdn $groupsdn $scope $binddn $bindpasswd $slaveDN $slavePw $master...