Displaying 20 results from an estimated 1292 matches for "absent".
2006 Apr 24
0
fxotune Problem
...und I think, I was reading about that and I found that the utility
fxotune can help me to change some settings about the audio and the
supression of interferences. My problem is that fxotuno does not work, I
execute this script like that:
#./fxotune -i 4
The output of this command is:
/dev/zap/1 absent: No such device or address
/dev/zap/2 absent: No such device or address
/dev/zap/3 absent: No such device or address
/dev/zap/4 absent: No such device or address
/dev/zap/5 absent: No such device or address
/dev/zap/6 absent: No such device or address
/dev/zap/7 absent: No such device or address
/d...
2008 Feb 20
2
purging unmanaged cron
Should this work?
# --- remove any cronjobs that are not managed by puppet.
resources { "cron": purge => true }
I get the following error.
Resources[cron]: Failed to generate additional resources: You must
specify a title for objects of type Puppet::Type::Cron
Ben
2010 Dec 13
2
rpart.object help
Hi,
Suppose i have generated an object using the following :
fit <- rpart(Kyphosis ~ Age + Number + Start, data=kyphosis)
And when i print fit, i get the following :
n= 81
node), split, n, loss, yval, (yprob)
* denotes terminal node
1) root 81 17 absent (0.7901235 0.2098765)
2) Start>=8.5 62 6 absent (0.9032258 0.0967742)
4) Start>=14.5 29 0 absent (1.0000000 0.0000000) *
5) Start< 14.5 33 6 absent (0.8181818 0.1818182)
10) Age< 55 12 0 absent (1.0000000 0.0000000) *
11) Age>=55 21 6 absent (0.714...
2012 Mar 14
10
permission denied errors on /var/lib/puppet stuff during puppetd -t
I''m suddenly getting the below errors from Rack during puppetd -t
(excerpted from the pink HTML output and cleaned for readability):
Could not prepare for execution: Got 10 failure(s) while initializing:
change from absent to directory failed: Could not set ''directory on ensure:
Permission denied - /var/lib/puppet/yaml;
change from absent to directory failed: Could not set ''directory on ensure:
Permission denied - /var/lib/puppet/rrd;
change from absent to directory failed: Could not set ''d...
2011 Oct 06
4
Mean(s) from values in different row?
Hello:
Is there a way to get a mean from values stored in different rows?
The data looks like this:
YEAR-1, JAN, FEB, ..., DEC
YEAR-2, JAN, FEB, ..., DEC
YEAR-3, JAN, FEB, ..., DEC
What I want is the mean(s) for just the consecutive winter months:
YEAR-1.DEC, YEAR-2.JAN, YEAR-2.FEB
YEAR-2.DEC, YEAR-3.JAN, YEAR-3.FEB
etc.
Thanks.
2009 Feb 06
1
...a single file, enable, which contains the character 0.
I''m running puppet-0.24.6-1.el5 on Centos 5.2.
[ddb@prcapp02 ~]$ sudo service puppet start
Starting puppet:
/usr/lib/ruby/site_ruby/1.8/puppet/util/settings.rb:735:in `use'': Got 16
failure(s) while initializing: change from absent to system_u failed:
Execution of ''/usr/bin/chcon -h -u system_u /var/log/puppet'' returned 1:
/usr/bin/chcon: can''t apply partial context to unlabeled file
/var/log/puppet (RuntimeError)
; change from absent to object_r failed: Execution of ''/usr/bin/chcon -h
-r o...
2008 Jun 06
8
useradd provider not working?
I have this config:
# BL00070 - Disable NFS
service {["nfs","nfslock","netfs","portmap"]:
ensure => stopped,
enable => false,
}
user {"rpc": ensure => absent, provider => "useradd" }
user {"rpcuser": ensure => absent, provider => "useradd" }
file {"/etc/imports": ensure => absent }
file {"/etc/auto.home": ensure => absent }
file {"/etc/auto.master": ensure => a...
2013 May 02
1
Beginner : First Agent/Master, Passenger Error
...myself,
and put it in. (I joined the config.ru file, just in case)
Well, then I execute :
*puppet agent --test > log.html*
And I got the following error message : (I joined the full log .html file
too)
"Could not prepare for execution: Got 10 failure(s) while initializing:
change from absent to directory failed: Could not set ''directory on ensure:
Permission denied - /var/lib/puppet/yaml; change from absent to directory
failed: Could not set ''directory on ensure: Permission denied -
/var/lib/puppet/rrd; change from absent to directory failed: Could not set
'...
2007 Jan 25
3
Usability concern with overrides
I''ve been tinkering around with managing users and am concerned with the
overall administrative usability of the inheritance overrides.
For instance, the user games:
redhat_base:
user { games: ensure => present }
local_site inherits redhat_base:
User[games] { ensure => absent }
This is fine, but imagine a few levels of nesting later with an admin that
wants to ensure that a user is absent that isn''t defined higher up and also
ensure that games is absent.
example inherits local_site:
# The intuitive way to do this is to do :
user {
baduser: ensure => ab...
2009 Sep 04
1
ssh_authorized_key always ensure absent even it's present
puppet version 0.24.8 from debian lenny-backports
My class works and resource created the authorized_keys file.
But puppet detect as ensure absent and added again and again
my authorized_keys got fews the same key lines.
I added the target => ''/home/test/.ssh/authorized_keys'',
again ensure is absent.
I replace the ssh_authorized_key.rb from 0.25rc1
and again ensure is absent.
class ssh::my_ssh_key {
ssh_authorized_key...
2015 Jan 28
1
subscriber absent
Hi all
WE have some users that turns off their phones when they are not at home.
We see the warning message:
Unable to create channel of type 'SIP' (cause 20 - Subscriber absent)
just after the Dial() command and a
Everyone is busy/congested at this time
message.
Where is this "unable - cause 20" status available in the dialplan?
Which variable holds this?
We'd like to play something to the caller in case the user is absent.
Cheers
Ethy
2010 Jan 05
2
zero-fill absent data
Hello,
I have a set of data frames, generated by an SQL query that I am working
with. Because of the way the query was written, zero values for the
dependent variable (V2 in the example) are not recorded. Up until now
this has not been a problem.
I would like to be able to fill all absent data with 0.
Current state of data (e.g.):
> frame<-as.data.frame(cbind(c(1:2,5:7),c(0.5,0.2,1,1.6,2)))
> frame
V1 V2
1 1 0.5
2 2 0.2
3 5 1.0
4 6 1.6
5 7 2.0
So that frame returns:
V1 V2
1 1 0.5
2 2 0.2
3 3 0.0
4 4 0.0
5 5 1.0
6 6 1.6
7 7 2.0
Since absent data may b...
2012 Oct 21
1
use regex to ensure multiple directories are absent or exist
Is it possible to use regex to ensure directories are deleted.....
I want to be able to do something like:
file { ''/var/directory[1-9]'':
ensure => absent,
}
Would also be nice to use regex to ensure directories are present...
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/puppet-users/-/ReHmba9K8z0J.
To post to th...
2007 Jan 30
2
Problem deleting user''s primary groups and the users themselves.
This has been a "fun" issue.
Basically, I''m trying to purge (ensure => absent) useless users and groups
that I don''t need.
The problem that I''m having, is that I can''t seem to determine a way to make
sure that the users are deleted before the groups.
For example:
user { games: ensure => absent }
group { games: ensure => absent }
Now, some...
2007 Jan 24
1
bug in logging
...0 2007 Puppet (notice): Reopening log files
Wed Jan 24 09:28:36 -0800 2007 Puppet (notice): Starting Puppet server
version 0.22.0
Wed Jan 24 09:28:44 -0800 2007 Puppet (notice): Compiled configuration for
fc5 in 0.04 seconds
Wed Jan 24 09:28:45 -0800 2007 /File[/tmp/TestPuppet2]/ensure (notice): is
absent, should be file (noop)
### manual break 1
Wed Jan 24 09:28:36 -0800 2007 Puppet (notice): Starting Puppet server
version 0.22.0
Wed Jan 24 09:28:44 -0800 2007 Puppet (notice): Compiled configuration for
fc5 in 0.04 seconds
Wed Jan 24 09:28:45 -0800 2007 /File[/tmp/TestPuppet2]/ensure (notice): is
a...
2013 Mar 20
3
How does puppetlabs-lvm determine if a filesystem is absent?
We had puppet turned off on a host for a few days, and when we turned it back on, we started seeing:
(/Stage[setup]/Foo::Filesystems/Filesystem[/dev/data_vg/foo_lv]/ensure) change from absent to present failed: Execution of ''mkfs.ext4 /dev/data_vg/foo_lv'' returned 1: mke2fs 1.41.12 (17-May-2010)#012/dev/data_vg/foo_lv is mounted; will not make a filesystem here!
It''s mounted because there is already I filesystem! I had added another lv by hand, but we never m...
2009 Apr 25
2
Olivier Castien/Roncq/Infofrance/FRA/TZG est absent.
Je serai absent(e) ? partir du 25/04/2009 de retour le 04/05/2009.
Je r?pondrai ? votre message d?s mon retour. En cas d'urgence, vous pouvez
contacter l'?quipe technique d'infofrance.
2008 Jun 17
0
Rpart description of tree groups
...he functions I have generate paragraphs containing
enumerations of the predictors in pruned trees and the number of
formed groups.
Its easy enough to recover these. For instance,
R> print ( tree )
n= 878
node), split, n, loss, yval, (yprob)
* denotes terminal node
1) root 878 110 Absent (0.8747153 0.1252847)
2) P3XMAR2=No 845 96 Absent (0.8863905 0.1136095) *
3) P3XMAR2=Yes 33 14 Absent (0.5757576 0.4242424)
6) PADV=Yes 7 0 Absent (1.0000000 0.0000000) *
7) PADV=No 26 12 Present (0.4615385 0.5384615)
14) ACPS=No 12 5 Absent (0.5833333 0.4166667) *...
2008 Jan 09
1
removing exported resources
...; "blahs content",
ensure => present,
}
and thus export "/tmp/bla" to another host does it vanish by itself as
soon as I remove the definition, or would I need to state something
like:
@@file{"/tmp/bla":
content => "blahs content",
ensure => absent,
}
I am asking, because I have reconfigred some of the exported resources
that I have been using: "ensure => absent".
What happens is the following:
When puppetd runs on the collection host, the file is first deleted
and then created again. Huh? how can this be explained? Is this...
2013 Jul 17
1
bce and "Warning: bootcode thinks driver is absent."
Recently under amd64 and 9.1-STABLE I am seeing issues with the bce
driver. Message is "Warning: bootcode thinks driver is absent". After
this message, the box appears to be wedged. After rebooting, it got the
same message during fsck. So we installed 9.2 pre-release using a snapshot
iso from 7/13/13. Shortly after boot we got the same message. We are now in
the process of installing 9.1 release to verify this is a...