Displaying 20 results from an estimated 9000 matches similar to: "how to update solaris packages without keeping local copies"
2007 May 03
3
Re: UPDATE automated installation of puppet into s olaris 10 zones
>> You''re right, if the package content from the global zone is
>> reflected in all zones, the necessary files are already there.
>>
>> Typically I try to keep additional installed packages as
>> independent as possible. So all additional software packages have
>> the following parameters set in the pkginfo file:
>>
>>
2009 Feb 12
9
Schedule oddity
I have the following set up:
schedule {nightly:
period => daily,
range => "18 - 23",
repeat => 1
}
define deadlypkg {
tag("package")
$pkgrepo="/staging/PRODUCTION/deadly"
package{"$name":
source => "$pkgrepo/$name.pkg",
ensure => latest,
adminfile
2007 May 08
3
Solaris streams package installation
Is it possible to install a solaris streams package with puppet?
As some of my machines are not allowed to be a nfs client, I transfer the
bunch of packages to these clients with the file type and puppet:// ...
If the packages are in filesystem format there can be hundreds of files within
large packages. It takes a huge amount of time to transfer all of them. So
I''ve changed them into
2007 Sep 08
3
what slows down puppet the most?
Hi guys,
Which puppet operations should i try to avoid?
I know that probably the most time consuming operations are file copies,
but, is there something from the code point of view that I should try to
avoid?
I''ve seen for example, that on Solaris, puppet will execute pkginfo quite
alot of times - sometimes with a package name, some other times without
(pkginfo -l), thats extremely time
2007 Dec 12
8
Solaris package woes
I am trying to get Puppet to push out a Solaris sudo package
that I built, but I keep getting errors. I tested applying
the package manually outside of Puppet and it works perfectly,
but when I attempt to push it out via Puppet it fails.
Puppetmaster Version: 0.23.2 [Ubuntu Linux 7.10 - Puppet built
from source]
Puppet client version: 0.23.0 [Sun Solaris 10 Zone - Puppet
built from source]
The
2007 Oct 29
12
Boolean expressions
I''m trying to write a wrapper definition for the file type to make it a
bit smarter. I have a basic version working fairly well:
define xfile($owner = root, $group = root, $mode = 644, $source,
$backup = main, $recurse = false, $ensure = file) {
file { $name:
mode => $mode,
owner => $owner,
group => $group,
backup => $backup,
recurse
2011 Dec 28
3
packages and Solaris
Hi folks,
I''m about to propose to my current company that we use puppet to manage
releases of home grown software. The environment is a mix of Solaris
8/9/10 and RHEL 5&6.
I''ve got a handle on how to create recipes to release software into the
RHEL environment. The unknown for me is how to manipulate the pkgadd
provider to load the locally grown package stream. Can
2007 Oct 30
2
[osol-help] Squid Cache on a ZFS file system
On 29/10/2007, Tek Bahadur Limbu <teklimbu at wlink.com.np> wrote:
> I created a ZFS file system like the following with /mypool/cache being
> the partition for the Squid cache:
>
> 18:51:27 root at solaris:~$ zfs list
> NAME USED AVAIL REFER MOUNTPOINT
> mypool 478M 31.0G 10.0M /mypool
> mypool/cache 230M 9.78G 230M
2009 Jan 28
5
Solaris zone documentation
I''m following the example provided in the type reference
under ''zone'', i.e.:
zone{myzone:
autoboot=>true,
create_args=>"-b",
ip=>"nge0:10:130.55.201",
path=>"/zoneds/%s",
realhostname=>"myzone.example.com",
2011 Jan 12
1
change from notrun to 0 failed: returned 1 instead of 0
# cat iddmi.pp
class iddmi {
# define pkg variable
$pkg = $hardwareisa ? {
"sparc" => "Iddmi_SunOS_sparc.pkg",
"i386" => "Iddmi_SunOS_i386.pkg",
default => undef,
}
$ftpsystems = "ftp.example.net/download"
# define path deafult for exec
Exec { path =>
2010 Feb 18
14
Rebuilding machines from foreman
Hello,
I ran into this problem today, I am trying to implement "One click
installation", I followed foreman howtos and set up the pre-requisites
accordingly.
However, when I click on "Build" button, I get the following errors in the
foreman''s console and another error in the web interface indicating that the
installation failed. Any ideas?
*"PuppetCA: SSL/CA or
2009 Apr 23
11
Puppet on busybox, Bob Hope or No Hope?
When I say busybox it''s actually VMware ESX server which seems to use
busybox (which I guess is the case a number of other software appliances) .
Reason for wanting to install puppet is to run the cli tools to create
nightly vmware snapshots.
I''m happy to give it a go (and add the docs to the wiki) but I''m not too
sure at this stage how big a task this might be and what,
2011 Mar 22
13
Foreman 0.2 Release Candidate
Hello All,
I''m happy to announce a new release candidate of Foreman, top highlights
for this release includes:
* New look and feel
* Extended restful API
* Support for New Puppet Reports format
* Full VM/physical host Provisioning
* Powerful template generator ( pxelinux, gpxe, kickstart, preseed, grub
etc..)
* introduce a new service called smart proxy (which can run on remote
2009 Dec 17
5
Foreman summary mail
Hello,
I have enabled summary emails from foreman and set up a cron job which sends
me periodic summary emails. However, the mail''s content is sort of plain
text. Now this is more like a feature request rather than a problem, I am
wondering if we could use some kind of HTML template and pass the values
through this HTML template and then mail the output as a summary email to
the
2011 Mar 08
22
Force resigning of existing certificates
Is there a way to force the puppetmaster to resign certificates for
existing certificates when a new CSR for the same hostname arrives?
When we reinstall freshly formatted clients with puppet (with the
same hostname) the puppet client complains:
err: Could not request certificate: Retrieved certificate does not match
private key; please remove certificate from server and regenerate it
2008 Nov 10
12
CA_Server woes
I''m having difficulty getting my head around some CA issues
My client has:
[puppetd]
ca_server=puppetca.mydomain.com
and puppet resolves to a different machine.
when puppet connects, it requests a signature from
puppetca.mydomain.combut then on the next pass fails with the
following:
err: Could not retrieve catalog: Certificates were not trusted: SSL_connect
returned=1 errno=0
2008 Jul 30
6
Refreshonly question
Does anyone have a technique for performing an exec the first time
puppetd runs but then reverting to refreshonly => true state for
subsequent runs?
The basic idea is:
file { "/etc/foo":
notify => Exec["bar"]
}
exec { "bar":
command => "Do stuff to /etc/foo",
refreshonly => true
}
Should I use a fact that is unset based on a
2007 Sep 10
6
puppetshow setup.pp
Hi guys,
I''ve just checkout the puppetshow code, and I was looking for the
setup.ppfile, but I cant find it anywhere.... anyone has an idea where
should i look
for it?
(or what needs to be done?)
Thanks,
Ohad
_______________________________________________
Puppet-users mailing list
Puppet-users@madstop.com
https://mail.madstop.com/mailman/listinfo/puppet-users
2010 Jul 22
8
Foreman / External Nodes -- Node Not found
Hello All,
So I finally got around to start to cut over node definitions
from standard flat files to external nodes (foreman), and getting
error message: "Error 400 on SERVER: Could not find node ''nodename'';
cannot compile" - So basically it can''t pick up the node from the
external node config.
When I test the fetching of the yaml file it seems to work
2010 Jun 17
6
Foreman / external_node.rb
Hello All,
I''m trying to start using external nodes under foreman, and I''m
running into some issues. I have the entries in puppet.conf:
[main]
external_nodes = /etc/puppet/external_node.rb
node_terminus = exec
The enternal_node.rb script is the one that came with foreman:
#!/usr/bin/ruby
# a simple script which fetches external nodes from Foreman
# you