Displaying 20 results from an estimated 39 matches for "notrunning".
Did you mean:
not_running
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 Mar 04
2
exec failure
Hello,
I''m using puppet 0.25.1 - and I''m trying to create a custom resource to
use launchctl to stop a launchd job.
command => "launchctl stop `launchctl list | grep $job_real | cut -f 3`",
yeilds:
err:
//sav/Stop_launchd_job[com.Symantec.SymSecondaryLaunch]/Exec[com.Symantec.SymSecondaryLaunch]/returns:
change from notrun to 0 failed: launchctl stop `launchctl
2011 Sep 14
10
fail to exec apt-get upgrade (change from notrun to 0 failed...)
So here is my manifest:
class aguu {
exec { "update":
command => "apt-get update",
path => "/usr/bin/"
}
exec { "upgrade":
command => "apt-get upgrade -y",
path => "/usr/bin/"
}
}
It it supposed to run apt-get update + upgrade
2009 Oct 08
2
Installing libhildonfm2-dev for scratchbox
What seems to be an easy thing to do as to install a library into
scratchbox is being something difficult to debug.
The command "/scratchbox/moz_scratchbox -p apt-get --yes --force-yes
install libhildonfm2-dev" can be run in a linux vm with the account
"cltbld" without any problems but when I try to test it from this same
slave (I remove first the package) or any other slave
2012 May 22
11
Puppet First Run after Install failing in module pe_mcollective
I am installing puppet enterprise manager (master) on a RHEL box.
Though the install itself succeeds without any issues, the first run
of puppet when it tries to deploy the pe_mcollective module fails with
the following error.
Message:
change from notrun to 0 failed: sh -c ''umask 077; keytool -
importkeystore -deststorepass puppet -destkeypass puppet -destkeystore
broker.ks -srckeystore
2012 Jan 13
2
Problem with not installing package, exec do an error
Hello
I have a list of successive package, and it occured that some package
are not installed.
exec { ''sudo gem update --system'':
path => [''/usr/bin/''],
alias => updateGem,
}
package { '' libmemcached-dev'':
ensure => present,
alias => memDev,
require => Exec[updateGem],
}
package { '' libmemcached-dbg'':
2010 Aug 04
1
Build fails due to missing ovirt-node-recipe.ks
> - ace -d install ovirt has one error : package ovirt-node-image-pxe
> not
> found
I get an error when FreeIPA is set up. Then a whole heap of notices and warning about a missing dependancy (presumably FreeIPA)
debug: //freeipa::bundled/Single_exec[ipa_server_install]: Executing '/usr/sbin/ipa-server-install -r ovirt.priv -p 'supersecretpw' -P 'supersecretpw' -a
2013 Jun 26
1
use of exec in puppet
Hi,
I''ve tried to to exec function in puppet for enabling module for apache.
Here is the code that I am using:
class apache::mod {
exec { "a2enmod" :
command => "a2enmod proxy_http",
path => "/usr/sbin/",
notify => Class["apache::service"],
require => Class["apache::install"],
}
}
But in agent I''m getting the
2005 Aug 11
1
win32, ssh and rsync
...operation - however it does not run from the
windows 2003 scheduler.
I thus want to know if the command can be broken into
2 parts... the ssh connect part... and the rsync part.
I do not beleive this is the same as the ssh
tunneling since the rsyncd.conf file does not exist on
the server and I am notrunning rsync as a daemon.
Has anyone else had experience with this.
Regards
Donald
___________________________________________________________
How much free photo storage do you get? Store your holiday
snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com
2013 Apr 04
5
Unable to set MySQL root password
Hi,
Using this module https://forge.puppetlabs.com/puppetlabs/mysql as
described on documentation:
class { ''mysql::server'':
config_hash => { ''root_password'' => ''foo'' }
}
But, couldn''t set password after logging getting error: Access denied for
user ''root''@''localhost'' (using password:
2011 Apr 15
15
Installing port on FreeBSD
New user trying to get a port to compile: I tried searching but all I
get are links to the FreeBSD port of puppet. Easier to find a needle
in a haystack.
A class has:
exec { "port-sudo":
cwd => "/usr/ports/security/sudo",
environment => "BATCH=yes",
command => ''/bin/sh -c "/usr/bin/make
2013 Aug 15
1
/usr/bin/apt-key: 8: /usr/bin/apt-key: mktemp: not found
When installing stackdriver on an ubuntu 12.04 machine, I get the following
error:
change from notrun to 0 failed: /usr/bin/apt-key: 8: /usr/bin/apt-key: mktemp: not found
Based on the instructions here <http://feedback.stackdriver.com/knowledgebase/articles/206135-ubuntu> on their website, my resource is as follows:
exec { ''add-stackdriver-key'':
command =>
2012 Oct 24
1
Exec python script on puppet clinet running on windows
I am trying to execute a python script from manifest file on puppet windows
based client:
exec {''ez_setup.py -U setuptools'':
#command => ''C:\Python27\ez_setup.py -U setuptools'',
cwd => ''C:\Python27'',
path => ''C:\Python27;%PATH%'',
#creates => ''C:\Program,
2012 Feb 16
4
Could not set present on ensure: Read-only file system
Hi,
I try install python-psycopg2 with other packages, when run apt-get -y
update returns the errors:
err: /Stage[main]/Etc/Package[build-essential]/ensure: change from
purged to present failed: Could not set ''present on ensure: Read-only
file system - /tmp/puppet20120216-1063-18q7lsz-0 at
/tmp/vagrant-puppet/manifests/vagrant.pp:15
err:
2012 Jun 04
1
Need help resolving bad Puppet module entries for STIG
I discovered that a number of our STIG Puppet modules are failing. I am
thinking its because the code is wrong because when I make a quick chance
to the actual code being used, then the code actually works as intended.
STIG Puppet Code Repository:
2007 Mar 13
4
Object sync problem
Hi,
Sorry to hassle everyone again, yes I''m a newbie!!
I''ve created some code and I''m getting a out of sync style error message.
Here''s a snipet of the code (to reproduce the problem):
package { [ "tar", "gzip", "bzip2", "sed" ]:
ensure => latest
}
define xxx {
$xenrelease = ''3.0.4''
2013 Feb 26
5
Glassfish automatic installation in Puppet
Hi All,
Can any one help to install my jar file automatically,
When I tried to install /usr/bin/java -Xmx256m -jar
/gx/mnt/software/Vidispine/Components/glassfish-installer-v2.1.1-b31g-linux.jar,its
is asking for confirmation like Accept or Decline? [A,D,a,d]. So how can I
pass answer with command.
Please find my puppet code below
exec { ''glassfishInstaExe'':
2004 Oct 19
0
samba 3.0.7 make check fails in function strstr_m
Hi all,
I wanted to upgrade from samba 3.0.4 to 3.0.7 and installed Samba 3.0.7
in a seperate directory . OS is Solaris 8 on Sun-Sparc.
Python 2.3.3 (from sunfreeware) installed
libiconv 1.8 installed
When running "make check" i get the following output:
..........................
# make check
WARNING: you need to run ./config.status
Linking bigballofmud shared library
2013 Feb 18
2
Dependency Ordering Confusion
I have a module for windows nodes that is defined like:
class ast_win {
Class[''ast_win::env''] ~> Class[''ast_win::restart''] -> Class[''ast_win'']
ast_win::env contains a bunch of scripts that modify the environment on the
host machine. Mostly the PATH variable, but also other variables (e.g.
http_proxy) that are required for
2013 Jan 02
13
Puppet and installing packages from source
Hello Everyone,
I''m looking for a way to install packages from source via puppet, I was
able to locate maybe 5 posts on this subject which is very strange, as I
would expect people to still use ./configure with their own customized
options.
For example, I need to compile Curl with c-ares support, for that I need to
set an option for ./configure but can''t find a way to do it.