Displaying 20 results from an estimated 10000 matches similar to: "user management"
2007 Dec 18
5
improving "file" to support http
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hey,
would it be very hard to improve file''s source parameter to support
downloading a file from a http server?
I got some quite huge files (~100MB) to distribute and update on each of
the servers, so doing this with puppet:// is a mess (and mostly failes
with the known buffer error).
Yours, Phillip
-----BEGIN PGP SIGNATURE-----
Version:
2007 Feb 11
7
Could not find definition vico_network
I''m trying to manage network files on two nodes, "vico" and "backup."
The component "vico_network" below works fine.
define vico_network ($owner = ''root'', $group = ''wheel'', $mode = ''644'',
$cro_int = ''ne3'',
$carp0_skew = '''', $carp1_skew =
2007 Apr 24
6
Using puppet to backup
Apologize ahead of time if this has been asked before. Without using
external commands, can puppet back-up files and directories to the
puppetmaster server? If I delete or change a file, I can back the file,
but all I want to do is to take a snap-shot of some configurations.
If I can''t do it natively, has anyone created a script that does so
using external commands (such as tar, gzip,
2007 Apr 30
25
escape regex code
hello,
i wondered if it would not be interesting to have some filters
function in puppet like
filter_integer(), filter_prelregex, filter_text, filter_email or such
so we can validate and make our defines a little more foolproof :)
i particulary see filter_regex as usefull in quite a lot of exec that
manipulates text files. What do you think about this ?
--
Cordialement,
Ghislain
2007 May 29
12
Group management
Hi,
I am sure this subject has come up before. I did not find anything on Google
that comes close to what I am trying to do.
I would like to manage different groups on multiple nodes using puppet and
do not know of a good way to do it. Does anyone have an idea of how I can
accomplish this?
Any help will be appreciated.
Thanks,
Mouncef
_______________________________________________
2007 Feb 24
8
Solaris Patch Management
Has anyone used Puppet to manage Solaris Patches? If so could you
pass on any tips.
For those without Solaris experience, you can only describe the
configuration of a Solaris system with the full combination of
Installed Packages
Installed Patches
Applied Configuration
2007 May 01
7
RFC: Changing variable override
It seems like a very common expectation that the following code would
work:
class boo {
$me = "/something"
file { $me: ensure => present }
}
class yay inherits boo {
$me = "/something/else"
}
Yet, as many have found to their chagrin, it does not work. Should it?
I believe I know how I could make this work: Create a single
variable namespace for class
2007 Oct 29
2
puppetd and self management
OS: FreeBSD 6.2-RELEASE
Puppet: 0.22.4
OS: CentOS 5.0
Puppet: 0.23.2
Is it currently not possible for puppetd to upgrade itself (0.22.4 -> 0.23.2)? I tried it,
and when puppetd attempted to restart itself (using the init provider), it failed to start
back up. Perhaps the init provider needs to close all file handles before executing the
rc.d scripts?
Additionally, I had puppetd update its
2007 Nov 25
4
sharing modules scalably
Hi,
[First, a quick introduction... I''m one of the sysadmins at Koumbit.org,
and we''re evaluating puppet for managing our modest server farm. I''ve
already started writing recipes and manifests and intend to share those
with this community. Part of my time worked on this will be directly
paid by Koumbit.]
So we''ve got a few half-finished puppet modules here:
2006 Oct 17
2
Feature request: account management
Hi
Creating an account on solaris using the user¹ type seems to create a
locked account. This then needs to be unlocked using
passwd u user
I would have thought creating an unlocked account would be more useful. Or
an extension to the user type that accepts a lock => (true|false) setting.
To test if an account is locked, use
passwd s user
HTH
Gary
2007 Nov 28
7
puppetrun failing: "connect'': tlsv1 alert unknown ca"
I''m trying to get puppetrun to work, without luck so far.
I have my puppetmaster and clients working fine with the clients polling
the master. Now I want to be able to force an update. Using version
0.23.2
On the client I set listen=true and created the namespaceauth.conf file.
Restarted puppetd and it appears fine.
On the master I run puppetrun as root and get
root@plane:/etc/puppet#
2007 Sep 08
19
Group changes made over and over?
Hi,
I have several Debian servers with puppet 0.23.2. Part of my
manifest looks like this:
class virt_all_users {
@group { "andy":
ensure => "present",
gid => "1000"
}
@user { "andy":
ensure => "present",
uid => "1000",
2007 Oct 12
7
puppet (Timeout::Error) HELP???
Can anyone help me with this error I am having. I am using puppet on
Debian Etch, version 0.20.1-1 from apt works OK, but due to one or two
problems we want to use the version from testing, 0.23.2-10, but the
puppetd just fails upon startup spitting this out:
Starting puppet configuration management
tool/usr/lib/ruby/1.8/timeout.rb:54:in `open'': execution expired
(Timeout::Error)
2008 Jan 18
7
puppet 0.23.2 can''t collect exported resources
hi,guys
I''m test the resources export and collect , OS is Debian etch and
sarge, puppet server and client version all of the 0.23.2 ; the db is
MySQL-4.1
My test code is like this.
node ''b'' {
@@file {"/tmp/a": ensure => present ,content => "test"; }
}
node ''a'' {
File <<||>>
}
I run puppetd on
2008 Jan 06
3
Mac OS X pkgs up.
So I''ve done some Mac OS X pkgs for the latest Facter and Puppet, as well as
a combined mpkg for them both.
Jeff McCune and I are doing a fair bit of testing on them this week in
preparation for MacWorld, so I wasn''t going to upload them to the official
site for another few days, but they''re looking pretty good.
http://explanatorygap.net/puppet/Facter_1.3.8.pkg.zip
2007 Aug 24
7
Problem restarting client service ssh in client
Hello,
I want a simple operation in a puppet node like restarting the ssh
service if it was stopped. My site.pp is simple as this:
import "services/*"
node default {
include ssh
}
The services directory as a ssh.pp :
class ssh {
service { ssh:
ensure => running,
subscribe => File["/etc/ssh/sshd_config"]
}
}
I''ve stopped the ssh service in the
2007 Feb 06
14
Unless in exec doesn''t seem to be honored on notify.
This was a fun one to track down...
I was trying to use the append_if_no_such_line script from the wiki and it
was working fine EXCEPT when I threw a notify at it.
The notify appears to completely ignore both unless and onlyif within the
exec for some reason.
If I put the same test in the actual command line, it works fine.
Example:
unless => "/bin/grep -Fqe ''$line''
2008 Jun 10
2
err: State got corrupted
Hi All,
I am tryting to setup Puppet masters and client in Sun solaris
environment. ( Global zone puppet Master is running) and non global
zone all puppet clients are installed ( ..Note I have not installed
puppet client in all nonglobal zone .. binaries are shared by Global
zone...
While i m generating client certified i am getting this error .... Any
one has clue ....
bash-3.00# puppetd
2007 Dec 27
2
Error when extending a resource parameter
Attached is a class for vmware guests that i am expanding however i am
getting an error when i try to extend the ''require'' parameter on an
''Exec'' to install the tools.
The error is
err: Could not retrieve configuration: Parameter ''require'' is
already set on Exec[setup_vmware_tools] by vmware::guest at