Displaying 12 results from an estimated 12 matches for "hijink".
Did you mean:
hijinks
2007 Apr 09
8
cert problem with client
I recently had a working puppet server serving around 4-5 clients. One of
the clients needed to be re-built and now only that client cannot connect.
puppetca --clean hostname did not work
So here is what I did on both the server/client I removed /var/lib/puppet/*
Then I restarted the server via
puppetmasterd --mkusers --verbose
I then connect in via the client with
/usr/bin/ruby
2007 Apr 01
0
No subject
file. I don''t know why it will work for other hosts but these steps do not
work for this.. there are no extra outputs from using --debug
On 4/9/07, Atom Powers <atom.powers at gmail.com> wrote:
>
> On 4/9/07, Mike Zupan <hijinks at gmail.com> wrote:
> > I recently had a working puppet server serving around 4-5 clients. One
> of
> > the clients needed to be re-built and now only that client cannot
> connect.
> >
> > puppetca --clean hostname did not work
>
> I had, somewhat similar, c...
2012 Oct 03
1
[LLVMdev] [PROPOSAL] Adding support for -fstack-protector-strong
...nc(&x);
}
and
void foo() {
SomeClass x;
x.someNonStaticMethod();
}
It's just that C++ is so good at obscuring the details. Granted there is
no & operator in the second case, but the address of the stack-local object
is available to the called method without any hijinks, just like the address
of the stack-local variable is available to someFunc in the first case.
--paulr
2001 Dec 20
3
rsync *Still* Copying All Files?
...ch to see if preserving timestamps on
the files would solve anything; it didn't.
I've made sure both client and server are set to the same time. The only
thing I've noticed that could be a possible clue is that the files are
different *sizes* on each disk (because of NTFS cluster size hijinks, etc.),
so, just to be paranoid, I tried using checksum to find file diffs. Again,
no dice. No matter what I try, rsyncing causes all files to be copied over
the wire onto the local box.
I can't figure this out. I don't know if rsync-for-cygwin's algorithm for
determining file diff...
2012 Oct 02
0
[LLVMdev] [PROPOSAL] Adding support for -fstack-protector-strong
On 2 Oct 2012, at 03:26, Magee, Josh wrote:
> 1) An address of a local variable is taken in such a way as to expose the
> address of a stack location.
> - Example: the address of a local on the RHS of an assignment, the
> address of a local passed into function.
This sounds like something that would be triggered for any function containing a block, even if the
2008 Nov 10
2
1 command ssh session
I wrote a patch to bash to log commands.. Now when I run the following
command
ssh user at hostname.com w
It never seems to spawn a bash session. Is there some ssh internal shell
that handles commands getting passed in like this?
Thanks
Mike
2007 Jun 07
1
machine classes
I''m having a bit of a tricky time with this.. I have an exec like this that
I want to run on all servers on the puppet network but like our email
servers
class rootpw {
exec { "/bin/echo test 1 2 3":
path => "/usr/bin:/usr/sbin:/bin",
schedule => daily,
}
}
So I have a list of ips that I don''t want that
2012 Feb 21
10
Search of multiple columns
I am currently writing a search method for my rails applications and at
the moment it works fine. I have the following in my game.rb:
def self.search(search)
if search
find(:all, :conditions => [''game_name LIKE ? OR genre LIKE ? OR
console LIKE ?'', "%#{search}%", "#{search}", "#{search}"])
else
find(:all)
end
end
No that searches
2012 Oct 02
5
[LLVMdev] [PROPOSAL] Adding support for -fstack-protector-strong
Hello,
I plan to implement "Stack Smashing Protection - Strong" support in LLVM.
Below is a description of this feature and an overview of the implementation
plan. I have divided up the implementation into stages that can be delivered
incrementally.
I'm looking for any feedback (suggestions, requests, etc) before I actually
begin the work.
Thank you!
Josh
2005 Jul 13
0
sftp/scp mysql logging
I am basing a patch off of the sftplogging project on sourceforge to
add support for mysql logging for both sftp/scp. I have mysql compiled
in successfully and logging fine on connects/quits but my issue is
sending a file.. it does the reading from the sockets in this function
i take it
static void
process_read(void)
{
Now it does that for each chunk that it gets over the socket from what
i can
2005 May 13
2
not deleting from the root
I have a bit of an issue with rsync. I am using to keep directories in
sync via another server for backup.
Here is the server config
[w1]
path = /w1
comment = w1 web dir
[w2]
path = /w2
comment = w2 web dir
Now on the client i run this command
rsync -avv --delete --force domain.com::w1/ /w1/
It will NOT delete anything that is no on the server anymore.. for
example on the server/client there
2011 Apr 14
0
New package provider
I''m looking to create a package provider. We have puppet installed in
a non-standard location
/puppet/puppet/*
The only way I can test the provider is putting the new provider on
the server and restarting puppet on the client. So a few questions.
Is there a way to install it locally so I don''t have to make the
changes on the server and restart the client?
Also it seems I have