HIERA(1) Utils HIERA(1)NAME
hiera - Lightweight Pluggable Hierarchical Database
SYNOPSIS
hiera [options]
DESCRIPTION
hiera is a simple pluggable hierarchical database.
OPTIONS
Mandatory arguments to long options are mandatory for short options too.
-V, --version
Version information
-d, --debug
Show debugging information
-a, --array
Array search
-h, --hash
Hash search
-c, --config CONFIG
Configuration file
-j, --json SCOPE
JSON format file to load scope from
-y, --yaml SCOPE
YAML format file to load scope from
-m, --mcollective IDENTITY
Retrieve facts from a node via mcollective as scope
-i, --inventory_service IDENTITY Retrieve facts for a node via Puppet's inventory service as scope
AUTHORS
hiera is a part of Puppet Hiera and developed by Puppet Labs <info@puppetlabs.com>, (R.I.Pienaar <rip@devco.net> respectively).
This man page was written by Patrick Ringl <patrick_@freenet.de> for the Debian GNU/Linux distribution (but it may also be used by others).
hiera 2012 HIERA(1)
Check Out this Related Man Page
PUPPET-SECRET_AGENT(8) Puppet manual PUPPET-SECRET_AGENT(8)NAME
puppet-secret_agent - Mimics puppet agent.
SYNOPSIS
puppet secret_agent action
DESCRIPTION
This subcommand currently functions as a proof of concept, demonstrating how the Faces API exposes Puppet's internal systems to application
logic; compare the actual code for puppet agent. It will eventually replace puppet agent entirely, and can provide a template for users who
wish to implement agent-like functionality with non-standard application logic.
OPTIONS
Note that any configuration parameter that's valid in the configuration file is also a valid long argument, although it may or may not be
relevant to the present action. For example, server is a valid configuration parameter, so you can specify --server <servername> as an
argument.
See the configuration file documentation at http://docs.puppetlabs.com/references/stable/configuration.html for the full list of acceptable
parameters. A commented list of all configuration options can also be generated by running puppet with --genconfig.
--mode MODE
The run mode to use for the current action. Valid modes are user, agent, and master.
--render-as FORMAT
The format in which to render output. The most common formats are json, s (string), yaml, and console, but other options such as dot
are sometimes available.
--verbose
Whether to log verbosely.
--debug
Whether to log debug information.
ACTIONS
synchronize - Run secret_agent once.
SYNOPSIS
puppet secret_agent
DESCRIPTION
Mimics a single run of puppet agent. This action does not currently daemonize, but can download plugins, submit facts, retrieve and
apply a catalog, and submit a report to the puppet master.
RETURNS
Verbose logging from the completed run. When used from the Ruby API: returns a Puppet::Transaction::Report object.
NOTES
This action requires that the puppet master's auth.conf file allow save access to the facts REST terminus. Puppet agent does not use
this facility, and it is turned off by default. See http://docs.puppetlabs.com/guides/rest_auth_conf.html for more details.
EXAMPLES
synchronize
Trigger a Puppet run with the configured puppet master:
$ puppet secret_agent
COPYRIGHT AND LICENSE
Copyright 2011 by Puppet Labs Apache 2 license; see COPYING
Puppet Labs, LLC June 2012 PUPPET-SECRET_AGENT(8)
I am trying to use the find command to find files in the current directory that meet a certain date criteria.
find . -type -f -mtime +2
However, the above also checks the directories below.
I tried -prune, but that seems to ignore this directory completely.
I read about using -path w/... (5 Replies)
I'm Presently Writting A College Report On Operating Systems, Not Enjoying It Very Much.
I Was Hoping Someone Could Direct Me To A Site Where I Could Get Information Such As The Role Of Operating Systems, Types Of Operating Systems (Multi-User Multi-Tasking etc), Modes Of Operating systems... (3 Replies)
I'm new to shell scripting and I'm having a tough time figuring out how to script something. Can anyone help?
Here is my setup and what I want to do:
A directory contains a list of projects by year (2000, 2001, etc) and customers (01-001) all of which have the same internal directory setup... (3 Replies)
Hi guys.
I'm willing to copy a specific file system hierarchy, but I would not like to maintain the directory tree organization.
For example:
Let's say /a/b/c is the fs I'm wanting to copy to my destination,
and that c is a directory with 30 files, 10 on /a/b/c , 10 on a/b/c/c1 and 10... (2 Replies)
Hello all
I need to search and replace in multiple files that are in directory hierarchy
Im using the :
find . -name "*.dsp" -print | xargs grep -n -o Test.lib" , I like to be able to replace every instance of Test.lib
with empty space .
how can I write one liner that does this ? (3 Replies)
I am adding some individual files to a tar archive and would like them to be added to the archive without any directory hierarchy, even though the files themselves exist in levels of hierarchy. Unfortunately, tar seems to always preserve the directory hierarchy when it adds the files.
Here is... (2 Replies)
Hi.
im learning unix, and i have problem with my shell . i want to add hierarchical directories. so theshell have mkdir, rmdir and chdir commands.
the coding in C language.
i looked at the source of mkdir for example, and its very long and complicated. i need simple implementation... (9 Replies)
my data files are stored in such way like year->month->day-> data files, my requirement is to find out number of days of files from today to the starting day of storig files.
root directory = work/user/year->month->day-> data files
structure is as follows
2013->05->as of today there are 01... (7 Replies)
Team
I am using DBartisan tool for sybase database.
I have a table that has below fields Employee_ID,EMP_Name,First_Nm,Last_Nm,Emp_Designation,Employee's_Manager
is it possible to retrieve hierarchical data based on below fields
Emp_Designation will have Soft Engg,SSE,Team Lead,... (6 Replies)
Hi All,
Sorry for more question today. I am having a text file . Like below
704925680_TOTAL->MANUAL->TT IOR GSB
775116444_TOTAL->POO TO->TT
-572275295_TOTAL->MANUAL->MTO
-611408278_TOTAL->PRIE LEL
456690129_TOTAL->BTT TOO
475919266_TOTAL->MANUAL->COM
-172680236_TOTAL->BTT TOO->MTO... (15 Replies)
Dear Team
I am using DB2 v9 .
I have a condition to check roles based on hierarchies like below example.
1.Ramesh has Roles as "Manager" and "Interviewer"
2.KITS has Roles as "Interviewer"
3.ANAND has Roles as "Manager" and "Interviewer"
select * FROM TESTING
NAME ... (6 Replies)