Displaying 20 results from an estimated 800 matches similar to: "@ERROR: access denied / using rsync 2.5.6 over SSH on Solaris"
2009 Jul 02
1
lpSolve: how to allow variables to become negative
Dear all,
I am interested in solving a MIP problem with binary outcomes and
continuous variables, which ARE NOT RESTRICTED TO BE NEGATIVE. In
particular,
Max {z1,z2,z3,b1} z1 + z2 + z3
(s.t.)
# 7 z1 + 0 z2 + 0 z3 + b1 <= 5
# 0 z1 + 8 z2 + 0 z3 - b1 <= 5
# 0 z1 + 0 z2 + 6 z3 + b1 <= 7
# z1, z2, z3 BINARY {0,1}
# -5<= b1 <=5 (i.e. b1 <= 5; -b1 <= 5 )
Using
2013 Dec 02
1
Class parameter flexibility with ENC, hiera or both
Dear puppetteers,
I am having a philosophical question about parametrized classes.
When building modules, one wants to be as flexible as possible, to try
to target as many puppet flavors as possible. This is our target:
- Foreman users, using foreman as an ENC with smart variables (or
potentially any other ENC, but I would say this is the most widespread one).
- Pure Puppet''s site.pp
2004 Nov 11
1
RSPerl problem with testing
Hi,
I'm trying to install de RSPerl module and i have some problems trying
to test it. I've tried to contact with the author but the e-mail address
seems not to exist. Hope that anyone in this list could explain me a
little about this problem. I have a bash shell and what i do is the
following:
#PERLLIB=/usr/lib/R/library/RSPerl/share/blib/arch:/usr/lib/R/library/RSPerl/share/blib/lib
#
2012 Sep 28
2
nested modules and autoloading
All-
I''m using puppet 2.7.14. I''ve reviewed
http://docs.puppetlabs.com/puppet/2.7/reference/modules_fundamentals.html
but it doesn''t seem to cover what I''m attempting.
Consider a module layout like this:
$ tree mymodule
mymodule
|-- Modulefile
|-- README
|-- manifests
| |-- init.pp
| |-- special_type
| | `-- prereqs.pp
| `-- special_type.pp
2005 Nov 17
1
[Bug 1120] sftp deletes files if destination==source and client==server
http://bugzilla.mindrot.org/show_bug.cgi?id=1120
Summary: sftp deletes files if destination==source and
client==server
Product: Portable OpenSSH
Version: 3.9p1
Platform: ix86
OS/Version: Linux
Status: NEW
Severity: critical
Priority: P2
Component: sftp
AssignedTo: bitbucket at
2003 Apr 28
1
code12 when using modules
Hi
I updated my rsync to 2.5.6. Since then, any modules actions don't work
anymore.
rsync -ravvvn --stats --progress rollis.ch::mymodule
ends up in
opening tcp connection to rollis.ch port 873
receiving file list ...
rsync: connection unexpectedly closed (28 bytes read so far)
_exit_cleanup(code=12, file=io.c, line=165): entered
rsync error: error in rsync protocol data stream (code 12) at
2012 Dec 04
1
Solve system of equations (nleqslv) only returns origin
I'm solving 4 complex equations simultaneously. Code is below. The code
returns only zero's for the solution though there should also be a non-zero
result. I'm pretty confident that the equations are correct because they
are straight from a published paper and I checked them pretty thoroughly.
The parameter values I used are from the published paper as well. Any
suggestions for how
2011 Apr 22
0
question on register and dnsmgr_lookup
I "thought" I has everything using IP addresses.
I am not making "outside" calls this is all internal.
I have a connection between two machines both running asterisk.
I am using 1.8.3 and I see a lot of dnsmgr_lookup's for "mymachine".
I have a register line in sip.conf that is the only place mymachine is
referenced.
the actual definition for host= is the IP
2007 Nov 01
2
Nodes and defaults question
Hi there,
If I have a manifest with, say:
node default { ..stuff.. }
node mymachine { ..stuff.. }
What would happen on mymachine: will the stuff in default be executed
*as well as* the stuff in default, or only the stuff in mymachine?
And, if the latter, should I move global stuff just to global scope
outside of nodes?
Thanks
-Iwan
2011 Nov 11
2
[LLVMdev] Argument's types mismatch when creating CallInst.
Hello. I have an .bc, which defines @foo(%type* arg1, %type* arg2, %type*
arg3).
Firstly, i do this:
runtimeModule = getLazyIRFileModule("runtime.bc", smd, llctx);
then this:
fooFunction = runtimeModule->getFunction("foo");
myType = runtimeModule->getTypeByName("type");
After that, i'm creating another module:
myModule = new Module("My
2013 Nov 05
1
[LLVMdev] Thread-safe cloning
Sorry to resurrect an old thread, but I finally got around to testing
this approach (round tripping through bitcode in memory) and it works
beautifully - and isn't that much slower than cloning.
I have noticed however that the copy process isn't thread-safe. The
problem is that in Function, there is lazy initialization code for
arguments:
void CheckLazyArguments() const {
if
2011 Nov 11
0
[LLVMdev] Argument's types mismatch when creating CallInst.
On Fri, Nov 11, 2011 at 12:18 AM, arrowdodger <6yearold at gmail.com> wrote:
> Hello. I have an .bc, which defines @foo(%type* arg1, %type* arg2, %type*
> arg3).
> Firstly, i do this:
>
> runtimeModule = getLazyIRFileModule("runtime.bc", smd, llctx);
>
> then this:
>
> fooFunction = runtimeModule->getFunction("foo");
> myType =
2003 Jul 12
0
Samba-2.2.8a & LDAP - Can't join Domain - SID mapping error
Hi everyone,
I am at my wits end and am hoping one of you can help me out.
I am getting the following error when attempting to join Windows XP/2000 machine to the domain:
"The following error occurred attempting to join the domain "MY_DOMAIN"
No mapping between account names and security IDs was done.
Running Gentoo Linux
Samba 2.2.8a
OpenLDAP 2.0.27
I performed the
2013 Jun 11
2
hiera data bindings and template()
Hi,
I''m using Puppet 3.2.1 and heavily relying on hiera data bindings.
I have the following situation:
class software (
$my_content = undef,
) {
file { ''/path/to/file'':
content => $software::my_content,
}
}
in hieradata/software.yaml (hiera.yaml seems ok):
software::my_content: template(''mymodule/myfile.erb'')
With this configuration I
2008 Feb 18
3
Calling a controller inside a module
I tryied everything:
:controller => ''MyModule::Core::Controller''
require ''MyModule/core/controller''
include MyModule::Core
But nothing works !!!
Question is very simple:
How to call a controller that belongs to a Module inside the router.rb file?
This cannot be that difficult!
Thanks!
-Sergio
-------------- next part --------------
An HTML attachment
2015 Apr 29
0
Cannot authenticate the administrator account
On 28/04/15 22:41, Mike wrote:
> I wanted to follow up to the list in hopes it will help others with similar
> configuration.
> Per previous posts --
> OS: CentOS 7.153
> Samba: Version 4.1.17-SerNet-RedHat-11.el7
> Samba provisioned to act as: AD DC following Samba Wiki: Samba AD DC HOWTO
> Samba Internal DNS daemon deployed.
>
> 1. Disable selinux. Unless you have
2018 Aug 28
0
OpenLDAP support in future versions of CentOS
Hi Alicia,
On 28-08-18 17:51, Alicia Smith wrote:
> Hello!
>
> I just joined this mailing list, so I apologize in advance if this topic
> has already been covered.
>
> Red Hat and Suse announced they are no longer supporting OpenLDAP in future
> releases.
> https://www.ostechnix.com/redhat-and-suse-announced-to-
> withdraw-support-for-openldap/
>
> However, we
2007 Aug 31
2
Can module spec "behave like" controller spec?
Hello everyone:
Right now I am writing spec on modules, which are provided by my
colleagues. Some of the modules actually contain action methods. I tried
very hard to spec those action methods in modules. But it seems that the
rspec does not allow module spec to ''get'' action like controller does. After
I saw the documentation, I then used :behaviour_type=>:controller.
2012 Jul 09
1
Custom ruby modules/classes, standard namespacing, pluginsync, etc.
still pretty new to Ruby, please bare with me :) Say I have a module
with a custom type, structured like so:
[modules]/mymodule/manifests/init.pp
[modules]/mymodule/lib/puppet/provider/mytype/foo.rb
[modules]/mymodule/lib/puppet/type/mytype.rb
In foo.rb, I''d like to call some custom ruby functions in a module and/
or class. These are generic functions that may be used in other
modules,
2004 Oct 25
2
problem with installation on Linux (beginners)
Hello,
I'm new to the installation R on Linux and I've followed the
instructions on the R Installation and Administration Manual and on the
FAQs. I also have changed the path at the .bash_profile file but when I
try to type R at the shell prompt, it says:
Fatal error: R home directory is not defined
I've tried many things but all the time it says the same. Any help would
be