Translation will be hosted remotely.

This commit is contained in:
Pedro Algarvio 2013-10-12 21:01:15 +01:00
parent 0d457662ef
commit fba3d05562
484 changed files with 0 additions and 66476 deletions

View File

@ -1,16 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../contents.rst:6
msgid "Full Table of Contents"
msgstr ""

View File

@ -1,180 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../faq.rst:5
msgid "Frequently Asked Questions"
msgstr ""
#: ../../faq.rst:10
msgid "Is Salt open-core?"
msgstr ""
#: ../../faq.rst:12
msgid ""
"No. Salt is 100% committed to being open-source, including all of our APIs "
"and the new `'Halite' web interface`_ which will be included in version "
"0.17.0. It is developed under the `Apache 2.0 license`_, allowing it to be "
"used in both open and proprietary projects."
msgstr ""
#: ../../faq.rst:21
msgid "What ports should I open on my firewall?"
msgstr ""
#: ../../faq.rst:23
msgid ""
"Minions need to be able to connect to the Master on TCP ports 4505 and 4506."
" Minions do not need any inbound ports open. More detailed information on "
"firewall settings can be found :doc:`here </topics/tutorials/firewall>`."
msgstr ""
#: ../../faq.rst:28
msgid "My script runs every time I run a *state.highstate*. Why?"
msgstr ""
#: ../../faq.rst:30
msgid ""
"You are probably using :mod:`cmd.run <salt.states.cmd.run>` rather than "
":mod:`cmd.wait <salt.states.cmd.wait>`. A :mod:`cmd.wait "
"<salt.states.cmd.wait>` state will only run when there has been a change in "
"a state that it is watching."
msgstr ""
#: ../../faq.rst:35
msgid ""
"A :mod:`cmd.run <salt.states.cmd.run>` state will run the corresponding "
"command *every time* (unless it is prevented from running by the ``unless`` "
"or ``onlyif`` arguments)."
msgstr ""
#: ../../faq.rst:39
msgid ""
"More details can be found in the docmentation for the :mod:`cmd "
"<salt.states.cmd>` states."
msgstr ""
#: ../../faq.rst:43
msgid ""
"When I run *test.ping*, why don't the Minions that aren't responding return "
"anything? Returning ``False`` would be helpful."
msgstr ""
#: ../../faq.rst:45
msgid ""
"When you run *test.ping* the Master tells Minions to run commands/functions,"
" and listens for the return data, printing it to the screen when it is "
"received. If it doesn't receive anything back, it doesn't have anything to "
"display for that Minion."
msgstr ""
#: ../../faq.rst:50
msgid ""
"There are a couple options for getting information on Minions that are not "
"responding. One is to use the verbose (``-v``) option when you run salt "
"commands, as it will display \"Minion did not return\" for any Minions which"
" time out."
msgstr ""
#: ../../faq.rst:59
msgid ""
"Another option is to use the :mod:`manage.down <salt.runners.manage.down>` "
"runner:"
msgstr ""
#: ../../faq.rst:67
msgid "How does Salt determine the Minion's id?"
msgstr ""
#: ../../faq.rst:69
msgid ""
"If the Minion id is not configured explicitly (using the :conf_minion:`id` "
"parameter), Salt will determine the id based on the hostname. Exactly how "
"this is determined varies a little between operating systems and is "
"described in detail :ref:`here <minion-id-generation>`."
msgstr ""
#: ../../faq.rst:75
msgid ""
"I'm trying to manage packages/services but I get an error saying that the "
"state is not available. Why?"
msgstr ""
#: ../../faq.rst:77
msgid ""
"Salt detects the Minion's operating system and assigns the correct package "
"or service management module based on what is detected. However, for certain"
" custom spins and OS derivatives this detection fails. In cases like this, "
"an issue should be opened on our tracker_, with the following information:"
msgstr ""
#: ../../faq.rst:82
msgid "The output of the following command:"
msgstr ""
#: ../../faq.rst:88
msgid "The contents of ``/etc/lsb-release``, if present on the Minion."
msgstr ""
#: ../../faq.rst:93
msgid "I'm using gitfs and my custom modules/states/etc are not syncing. Why?"
msgstr ""
#: ../../faq.rst:95
msgid ""
"In versions of Salt 0.16.3 or older, there is a bug in :doc:`gitfs "
"</topics/tutorials/gitfs>` which can affect the syncing of custom types. "
"Upgrading to 0.16.4 or newer will fix this."
msgstr ""
#: ../../faq.rst:100
msgid "Why aren't my custom modules/states/etc. available on my Minions?"
msgstr ""
#: ../../faq.rst:102
msgid ""
"Custom modules are only synced to Minions when :mod:`state.highstate "
"<salt.modules.state.highstate>`, :mod:`saltutil.sync_modules "
"<salt.modules.saltutil.sync_modules>`, or :mod:`saltutil.sync_all "
"<salt.modules.saltutil.sync_all>` is run. Similarly, custom states are only "
"synced to Minions when :mod:`state.highstate "
"<salt.modules.state.highstate>`, :mod:`saltutil.sync_states "
"<salt.modules.saltutil.sync_states>`, or :mod:`saltutil.sync_all "
"<salt.modules.saltutil.sync_all>` is run."
msgstr ""
#: ../../faq.rst:110
msgid ""
"Other custom types (renderers, outputters, etc.) have similar behavior, see "
"the documentation for the :mod:`saltutil <salt.modules.saltutil>` module for"
" more information."
msgstr ""
#: ../../faq.rst:115
msgid ""
"Module ``X`` isn't available, even though the shell command it uses is "
"installed. Why?"
msgstr ""
#: ../../faq.rst:116
msgid ""
"This is most likely a PATH issue. Did you custom-compile the software which "
"the module requires? RHEL/CentOS/etc. in particular override the root user's"
" path in ``/etc/init.d/functions``, setting it to "
"``/sbin:/usr/sbin:/bin:/usr/bin``, making software installed into "
"``/usr/local/bin`` unavailable to Salt when the Minion is started using the "
"initscript. In version 0.18.0, Salt will have a better solution for these "
"sort of PATH-related issues, but recompiling the software to install it into"
" a location within the PATH should resolve the issue in the meantime. "
"Alternatively, you can create a symbolic link within the PATH using a "
":mod:`file.symlink <salt.states.file.symlink>` state."
msgstr ""

View File

@ -1,558 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../index.rst:9
msgid "What is Salt Stack?"
msgstr ""
#: ../../index.rst:11
msgid ""
"Salt is a new approach to infrastructure management. Easy enough to get "
"running in minutes, scalable enough to manage tens of thousands of servers, "
"and fast enough to communicate with them in *seconds*."
msgstr ""
#: ../../index.rst:15
msgid ""
"Salt delivers a dynamic communication bus for infrastructures that can be "
"used for orchestration, remote execution, configuration management and much "
"more."
msgstr ""
#: ../../index.rst:18
msgid "Offline documentation"
msgstr ""
#: ../../index.rst:20
msgid "Download a copy of the Salt documentation:"
msgstr ""
#: ../../index.rst:22
msgid "`PDF`_"
msgstr ""
#: ../../index.rst:23
msgid "`ePub`_"
msgstr ""
#: ../../index.rst:29
msgid "Download"
msgstr ""
#: ../../index.rst:31
msgid "Salt source releases are available for download via PyPI:"
msgstr ""
#: ../../index.rst:33
msgid "https://pypi.python.org/pypi/salt"
msgstr ""
#: ../../index.rst:35
msgid ""
"The installation documents outline where to obtain packages and installation"
" specifics for platforms:"
msgstr ""
#: ../../index.rst:38
msgid ":doc:`Installation </topics/installation/index>`"
msgstr ""
#: ../../index.rst:40
msgid ""
"The Salt Bootstrap project is a single shell script which aims to automate "
"the install correctly on platforms:"
msgstr ""
#: ../../index.rst:43
msgid "https://github.com/saltstack/salt-bootstrap"
msgstr ""
#: ../../index.rst:46
msgid "Getting Started"
msgstr ""
#: ../../index.rst:48
msgid ""
"This walkthrough is made to help individuals get started quickly and gain a "
"foundational knowledge of Salt:"
msgstr ""
#: ../../index.rst:51
msgid ":doc:`Official Salt Walkthrough</topics/tutorials/walkthrough>`"
msgstr ""
#: ../../index.rst:53
msgid "Additional tutorials are available when getting started with Salt"
msgstr ""
#: ../../index.rst:60
msgid "States - Configuration Management with Salt:"
msgstr ""
#: ../../index.rst:56
msgid ":doc:`Getting Started with States<topics/tutorials/starting_states>`"
msgstr ""
#: ../../index.rst:57
msgid ":doc:`Basic config management <topics/tutorials/states_pt1>`"
msgstr ""
#: ../../index.rst:58
msgid ":doc:`Less basic config management <topics/tutorials/states_pt2>`"
msgstr ""
#: ../../index.rst:59
msgid ":doc:`Advanced techniques <topics/tutorials/states_pt3>`"
msgstr ""
#: ../../index.rst:60
msgid ":doc:`Salt Fileserver Path Inheritance <topics/tutorials/states_pt4>`"
msgstr ""
#: ../../index.rst:63
msgid "Masterless Quickstart:"
msgstr ""
#: ../../index.rst:63
msgid ":doc:`Salt Quickstart </topics/tutorials/quickstart>`"
msgstr ""
#: ../../index.rst:66
msgid "A list of all tutorials can be found here:"
msgstr ""
#: ../../index.rst:66
msgid ":doc:`All Salt tutorials <topics/tutorials/index>`"
msgstr ""
#: ../../index.rst:69
msgid "Salt in depth"
msgstr ""
#: ../../index.rst:71
msgid ""
"Setting up and using Salt is a simple task but its capabilities run much, "
"much deeper. These documents will lead to a greater understating of how Salt"
" will empower infrastructure management."
msgstr ""
#: ../../index.rst:76
msgid "Remote execution"
msgstr ""
#: ../../index.rst:78
msgid ""
"Remote execution is the core function of Salt. Running pre-defined or "
"arbitrary commands on remote hosts."
msgstr ""
#: ../../index.rst:90
msgid "**Modules**"
msgstr ""
#: ../../index.rst:82
msgid ""
"Salt modules are the core of remote execution. They provide functionality "
"such as installing packages, restarting a service, running a remote command,"
" transferring files, and infinitely more."
msgstr ""
#: ../../index.rst:87
msgid ":doc:`Full list of modules </ref/modules/all/index>`"
msgstr ""
#: ../../index.rst:87
msgid "The giant list of core modules that ship with Salt"
msgstr ""
#: ../../index.rst:90
msgid ":doc:`Writing modules <ref/modules/index>`"
msgstr ""
#: ../../index.rst:90
msgid "A guide on how to write Salt modules."
msgstr ""
#: ../../index.rst:102
msgid "**Returners**"
msgstr ""
#: ../../index.rst:93
msgid ""
"Salt returners allow saving minion responses in various datastores or to "
"various locations in addition to display at the CLI."
msgstr ""
#: ../../index.rst:97
msgid ":doc:`Full list of returners </ref/returners/all/index>`"
msgstr ""
#: ../../index.rst:97
msgid "Store minion responses in Redis, Mongo, Cassandra, SQL or more."
msgstr ""
#: ../../index.rst:102
msgid ":doc:`Writing returners <ref/returners/index>`"
msgstr ""
#: ../../index.rst:100
msgid ""
"Extending Salt to communicate with more interfaces is easy, new databases "
"can be supported or custom interfaces can be easily communicated with."
msgstr ""
#: ../../index.rst:105
msgid "Targeting"
msgstr ""
#: ../../index.rst:107
msgid ""
":doc:`Targeting </topics/targeting/index>` is specifying which minions "
"should execute commands or manage server configuration."
msgstr ""
#: ../../index.rst:111
msgid ":doc:`Globbing and regex </topics/targeting/globbing>`"
msgstr ""
#: ../../index.rst:111
msgid "Match minions using globbing and regular expressions."
msgstr ""
#: ../../index.rst:115
msgid ":doc:`Grains </topics/targeting/grains>`"
msgstr ""
#: ../../index.rst:114
msgid ""
"Match minions using bits of static information about the minion such as OS, "
"software versions, virtualization, CPU, memory, and much more."
msgstr ""
#: ../../index.rst:118
msgid ":doc:`Node groups </topics/targeting/nodegroups>`"
msgstr ""
#: ../../index.rst:118
msgid "Statically define groups of minions."
msgstr ""
#: ../../index.rst:121
msgid ":doc:`Compound matchers </topics/targeting/compound>`"
msgstr ""
#: ../../index.rst:121
msgid "Combine the above matchers as a single target."
msgstr ""
#: ../../index.rst:125
msgid ":doc:`Batching execution </topics/targeting/batch>`"
msgstr ""
#: ../../index.rst:124
msgid ""
"Loop through all matching minions so that only a subset are executing a "
"command at one time."
msgstr ""
#: ../../index.rst:128
msgid "Configuration management"
msgstr ""
#: ../../index.rst:130
msgid ""
"Building on the remote execution core is a robust and flexible configuration"
" management framework. Execution happens on the minions allowing effortless,"
" simultaneous configuration of tens of thousands of hosts."
msgstr ""
#: ../../index.rst:154
msgid "**States**"
msgstr ""
#: ../../index.rst:135
msgid ""
"Express the state of a host using small, easy to read, easy to understand "
"configuration files. *No programming required*."
msgstr ""
#: ../../index.rst:140
msgid ":doc:`Full list of states <ref/states/all/index>`"
msgstr ""
#: ../../index.rst:139
msgid ""
"Install packages, create users, transfer files, start services, and much "
"more."
msgstr ""
#: ../../index.rst:143
msgid ":doc:`Pillar System <topics/pillar/index>`"
msgstr ""
#: ../../index.rst:143
msgid "Salt's Pillar system"
msgstr ""
#: ../../index.rst:146
msgid ":doc:`States Overview<ref/states/index>`"
msgstr ""
#: ../../index.rst:146
msgid "An overview of States and some of the core components."
msgstr ""
#: ../../index.rst:150
msgid ":doc:`Highstate data structure <ref/states/highstate>`"
msgstr ""
#: ../../index.rst:149
msgid ""
"A dry vocabulary and technical representation of the configuration format "
"that states represent."
msgstr ""
#: ../../index.rst:154
msgid ":doc:`Writing states <ref/states/writing>`"
msgstr ""
#: ../../index.rst:153
msgid ""
"A guide on how to write Salt state modules. Extending Salt to directly "
"manage in more software is easy."
msgstr ""
#: ../../index.rst:168
msgid "**Renderers**"
msgstr ""
#: ../../index.rst:157
msgid ""
"Write state configuration files in the language, templating engine, or file "
"type of choice. Salt's configuration management system is, under the hood, "
"language agnostic."
msgstr ""
#: ../../index.rst:164
msgid ":doc:`Full list of renderers <ref/renderers/all/index>`"
msgstr ""
#: ../../index.rst:162
msgid ""
"YAML is not the only choice, many systems are available, from alternative "
"templating engines to the PyDSL language for rendering sls formulas."
msgstr ""
#: ../../index.rst:168
msgid ":doc:`Renderers <ref/renderers/index>`"
msgstr ""
#: ../../index.rst:167
msgid ""
"Salt states are only concerned with the ultimate highstate data structure. "
"How that data structure is created is not important."
msgstr ""
#: ../../index.rst:171
msgid "Miscellaneous topics"
msgstr ""
#: ../../index.rst:173
msgid "Salt is many splendid things."
msgstr ""
#: ../../index.rst:177
msgid ":doc:`File Server <ref/file_server/index>`"
msgstr ""
#: ../../index.rst:176
msgid ""
"Salt can easily and quickly transfer files (in fact, that's how Salt States "
"work). Even under heavy load, files are chunked and served."
msgstr ""
#: ../../index.rst:181
msgid ":doc:`Syndic <ref/syndic>`"
msgstr ""
#: ../../index.rst:180
msgid ""
"A seamless master of masters. Scale Salt to tens of thousands of hosts or "
"across many different networks."
msgstr ""
#: ../../index.rst:186
msgid ":doc:`Peer Communication <ref/peer>`"
msgstr ""
#: ../../index.rst:184
msgid ""
"Allow minions to communicate amongst themselves. For example, configure one "
"minion by querying live data from all the others. With great power comes "
"great responsibility."
msgstr ""
#: ../../index.rst:190
msgid ":doc:`Reactor System <topics/reactor/index>`"
msgstr ""
#: ../../index.rst:189
msgid ""
"The reactor system allows for Salt to create a self aware environment by "
"hooking infrastructure events into actions."
msgstr ""
#: ../../index.rst:193
msgid ":doc:`Firewall Settings and Salt <topics/tutorials/firewall>`"
msgstr ""
#: ../../index.rst:193
msgid "A tutorial covering how to properly firewall a Salt Master server."
msgstr ""
#: ../../index.rst:197
msgid ":doc:`Scheduling Executions (like states)<topics/jobs/schedule>`"
msgstr ""
#: ../../index.rst:196
msgid ""
"The schedule system in Salt allows for executions to be run of all sorts "
"from the master or minion at automatic intervals."
msgstr ""
#: ../../index.rst:203
msgid ":doc:`Network topology <ref/topology>`"
msgstr ""
#: ../../index.rst:200
msgid ""
"At it's core, Salt is a highly scalable communication layer built on top of "
"ZeroMQ that enables remote execution and configuration management. The "
"possibilities are endless and Salt's future looks bright."
msgstr ""
#: ../../index.rst:206
msgid ":doc:`Testing Salt <topics/tests/index>`"
msgstr ""
#: ../../index.rst:206
msgid "A howto for writing unit tests and integration tests."
msgstr ""
#: ../../index.rst:210
msgid ":ref:`Python API interface <python-api>`"
msgstr ""
#: ../../index.rst:209
msgid ""
"Use Salt programmatically from scripts and programs easily and simply via "
"``import salt``."
msgstr ""
#: ../../index.rst:215
msgid ""
":doc:`Automatic Updates and Frozen Binary Deployments "
"<topics/tutorials/esky>`"
msgstr ""
#: ../../index.rst:213
msgid ""
"Use a frozen install to make deployments easier (Even on Windows!). Or take "
"advantage of automatic updates to keep minions running the latest builds."
msgstr ""
#: ../../index.rst:221
msgid ""
":doc:`Windows Software Manager / Package Repository <ref/windows-package-"
"manager>`"
msgstr ""
#: ../../index.rst:218
msgid ""
"Looking for an easy way to manage software on Windows machines? Search no "
"more! Salt has an integrated software package manager for Windows machines! "
"Install software hosted on the master, somewhere on the network, or any "
"HTTP, HTTPS, or ftp server."
msgstr ""
#: ../../index.rst:224
msgid "Reference"
msgstr ""
#: ../../index.rst:227
msgid ":doc:`Command-line interface <ref/cli/index>`"
msgstr ""
#: ../../index.rst:227
msgid "Read the Salt manpages."
msgstr ""
#: ../../index.rst:230
msgid ":doc:`Full list of master settings <ref/configuration/master>`"
msgstr ""
#: ../../index.rst:230
msgid "Read through the heavily-commented master configuration file."
msgstr ""
#: ../../index.rst:233
msgid ":doc:`Full list of minion settings <ref/configuration/minion>`"
msgstr ""
#: ../../index.rst:233
msgid "Read through the heavily-commented minion configuration file."
msgstr ""
#: ../../index.rst:236
msgid ":doc:`Full table of contents </contents>`"
msgstr ""
#: ../../index.rst:236
msgid "Dense but complete."
msgstr ""
#: ../../index.rst:239
msgid "FAQ"
msgstr ""
#: ../../index.rst:241
msgid "See :doc:`here <faq>` for a list of Frequently Asked Questions."
msgstr ""
#: ../../index.rst:244
msgid "More information about the project"
msgstr ""
#: ../../index.rst:247
msgid ":doc:`Release notes </topics/releases/index>`"
msgstr ""
#: ../../index.rst:247
msgid "Living history of Salt Stack."
msgstr ""
#: ../../index.rst:250
msgid ":doc:`Community </topics/community>`"
msgstr ""
#: ../../index.rst:250
msgid "How to get involved."
msgstr ""
#: ../../index.rst:253
msgid ":doc:`Salt Development </topics/development/index>`"
msgstr ""
#: ../../index.rst:253
msgid "Information for Hacking on Salt"
msgstr ""

View File

@ -1,48 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/auth/all/index.rst:8
msgid "Full list of builtin auth modules"
msgstr ""
#: ../../<autosummary>:1
msgid ":obj:`keystone <salt.auth.keystone>`\\"
msgstr ""
#: ../../<autosummary>:1
msgid "Provide authentication using OpenStack Keystone"
msgstr ""
#: ../../<autosummary>:1
msgid ":obj:`ldap <salt.auth.ldap>`\\"
msgstr ""
#: ../../<autosummary>:1
msgid "Provide authentication using simple LDAP binds"
msgstr ""
#: ../../<autosummary>:1
msgid ":obj:`pam <salt.auth.pam>`\\"
msgstr ""
#: ../../<autosummary>:1
msgid "Authenticate against PAM"
msgstr ""
#: ../../<autosummary>:1
msgid ":obj:`stormpath_mod <salt.auth.stormpath_mod>`\\"
msgstr ""
#: ../../<autosummary>:1
msgid "Salt Stormpath Authentication"
msgstr ""

View File

@ -1,33 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/auth/all/salt.auth.keystone.rst:6
msgid "salt.auth.keystone"
msgstr ""
#: ../../../salt/auth/keystone.pydocstring of salt.auth.keystone:1
msgid "Provide authentication using OpenStack Keystone"
msgstr ""
#: ../../../salt/auth/keystone.pydocstring of salt.auth.keystone:3
msgid "keystoneclient Python module"
msgstr ""
#: ../../../salt/auth/keystone.pydocstring of salt.auth.keystone.auth:1
msgid "Try and authenticate"
msgstr ""
#: ../../../salt/auth/keystone.pydocstring of
#: salt.auth.keystone.get_auth_url:1
msgid "Try and get the URL from the config, else return localhost"
msgstr ""

View File

@ -1,28 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/auth/all/salt.auth.ldap.rst:6
msgid "salt.auth.ldap"
msgstr ""
#: ../../../salt/auth/ldap.pydocstring of salt.auth.ldap:1
msgid "Provide authentication using simple LDAP binds"
msgstr ""
#: ../../../salt/auth/ldap.pydocstring of salt.auth.ldap:3
msgid "ldap Python module"
msgstr ""
#: ../../../salt/auth/ldap.pydocstring of salt.auth.ldap.auth:1
msgid "Authenticate via an LDAP bind"
msgstr ""

View File

@ -1,83 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/auth/all/salt.auth.pam.rst:6
msgid "salt.auth.pam"
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam:1
msgid "Authenticate against PAM"
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam:3
msgid ""
"Provides an authenticate function that will allow the caller to authenticate"
" a user against the Pluggable Authentication Modules (PAM) on the system."
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam:6
msgid "Implemented using ctypes, so no compilation is necessary."
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.PamConv:1
msgid "Wrapper class for pam_conv structure"
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.PamConv.appdata_ptr:1
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.PamConv.conv:1
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.PamHandle.handle:1
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.PamMessage.msg:1
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.PamMessage.msg_style:1
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.PamResponse.resp:1
#: ../../../salt/auth/pam.pydocstring of
#: salt.auth.pam.PamResponse.resp_retcode:1
msgid "Structure/Union member"
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.PamHandle:1
msgid "Wrapper class for pam_handle_t"
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.PamMessage:1
msgid "Wrapper class for pam_message structure"
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.PamResponse:1
msgid "Wrapper class for pam_response structure"
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.auth:1
msgid "Authenticate via pam"
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.authenticate:1
msgid ""
"Returns True if the given username and password authenticate for the given "
"service. Returns False otherwise"
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.authenticate:4
msgid "``username``: the username to authenticate"
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.authenticate:6
msgid "``password``: the password in plain text"
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.authenticate:8
msgid "``service``: the PAM service to authenticate against."
msgstr ""
#: ../../../salt/auth/pam.pydocstring of salt.auth.pam.authenticate:9
msgid "Defaults to 'login'"
msgstr ""

View File

@ -1,49 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/auth/all/salt.auth.stormpath_mod.rst:6
msgid "salt.auth.stormpath_mod"
msgstr ""
#: ../../../salt/auth/stormpath_mod.pydocstring of salt.auth.stormpath_mod:1
msgid "Salt Stormpath Authentication"
msgstr ""
#: ../../../salt/auth/stormpath_mod.pydocstring of salt.auth.stormpath_mod:3
msgid "Module to provide authentication using Stormpath as the backend."
msgstr ""
#: ../../../salt/auth/stormpath_mod.pydocstring of salt.auth.stormpath_mod:5
msgid "stormpath-sdk Python module"
msgstr ""
#: ../../../salt/auth/stormpath_mod.pydocstring of salt.auth.stormpath_mod:6
msgid ""
"This module requires the development branch of the stormpath-sdk which can "
"be found here: https://github.com/stormpath/stormpath-sdk-python"
msgstr ""
#: ../../../salt/auth/stormpath_mod.pydocstring of salt.auth.stormpath_mod:10
msgid "The following config items are required in the master config::"
msgstr ""
#: ../../../salt/auth/stormpath_mod.pydocstring of salt.auth.stormpath_mod:15
msgid ""
"Ensure that your apiKey.properties is readable by the user the Salt Master "
"is running as, but not readable by other system users."
msgstr ""
#: ../../../salt/auth/stormpath_mod.pydocstring of
#: salt.auth.stormpath_mod.auth:1
msgid "Try and authenticate"
msgstr ""

View File

@ -1,270 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/cli/index.rst:6
msgid "Command Line Reference"
msgstr ""
#: ../../ref/cli/index.rst:8
msgid ""
"Salt can be controlled by a command line client by the root user on the Salt"
" master. The Salt command line client uses the Salt client API to "
"communicate with the Salt master server. The Salt client is straightforward "
"and simple to use."
msgstr ""
#: ../../ref/cli/index.rst:13
msgid "Using the Salt client commands can be easily sent to the minions."
msgstr ""
#: ../../ref/cli/index.rst:15
msgid ""
"Each of these commands accepts an explicit `--config` option to point to "
"either the master or minion configuration file. If this option is not "
"provided and the default configuration file does not exist then Salt falls "
"back to use the environment variables ``SALT_MASTER_CONFIG`` and "
"``SALT_MINION_CONFIG``."
msgstr ""
#: ../../ref/cli/index.rst:22
msgid ":doc:`/topics/configuration`"
msgstr ""
#: ../../ref/cli/index.rst:25
msgid "Using the Salt Command"
msgstr ""
#: ../../ref/cli/index.rst:27
msgid ""
"The Salt command needs a few components to send information to the Salt "
"minions. The target minions need to be defined, the function to call and any"
" arguments the function requires."
msgstr ""
#: ../../ref/cli/index.rst:32
msgid "Defining the Target Minions"
msgstr ""
#: ../../ref/cli/index.rst:34
msgid ""
"The first argument passed to salt, defines the target minions, the target "
"minions are accessed via their hostname. The default target type is a bash "
"glob:"
msgstr ""
#: ../../ref/cli/index.rst:43
msgid "Salt can also define the target minions with regular expressions:"
msgstr ""
#: ../../ref/cli/index.rst:49
msgid "Or to explicitly list hosts, salt can take a list:"
msgstr ""
#: ../../ref/cli/index.rst:56
msgid "More Powerful Targets"
msgstr ""
#: ../../ref/cli/index.rst:58
msgid ""
"The simple target specifications, glob, regex and list will cover many use "
"cases, and for some will cover all use cases, but more powerful options "
"exist."
msgstr ""
#: ../../ref/cli/index.rst:62
msgid "Targeting with Grains"
msgstr ""
#: ../../ref/cli/index.rst:64
msgid ""
"The Grains interface was built into Salt to allow minions to be targeted by "
"system properties. So minions running on a particular operating system can "
"be called to execute a function, or a specific kernel."
msgstr ""
#: ../../ref/cli/index.rst:68
msgid ""
"Calling via a grain is done by passing the -G option to salt, specifying a "
"grain and a glob expression to match the value of the grain. The syntax for "
"the target is the grain key followed by a globexpression: \"os:Arch*\"."
msgstr ""
#: ../../ref/cli/index.rst:76
msgid "Will return True from all of the minions running Fedora."
msgstr ""
#: ../../ref/cli/index.rst:78
msgid ""
"To discover what grains are available and what the values are, execute the "
"grains.item salt function:"
msgstr ""
#: ../../ref/cli/index.rst:86
msgid "Targeting with Executions"
msgstr ""
#: ../../ref/cli/index.rst:88
msgid ""
"As of 0.8.8 targeting with executions is still under heavy development and "
"this documentation is written to reference the behavior of execution "
"matching in the future."
msgstr ""
#: ../../ref/cli/index.rst:92
msgid ""
"Execution matching allows for a primary function to be executed, and then "
"based on the return of the primary function the main function is executed."
msgstr ""
#: ../../ref/cli/index.rst:95
msgid ""
"Execution matching allows for matching minions based on any arbitrary "
"running data on the minions."
msgstr ""
#: ../../ref/cli/index.rst:99
msgid "Compound Targeting"
msgstr ""
#: ../../ref/cli/index.rst:103
msgid ""
"Multiple target interfaces can be used in conjunction to determine the "
"command targets. These targets can then be combined using and or or "
"statements. This is well defined with an example:"
msgstr ""
#: ../../ref/cli/index.rst:111
msgid ""
"In this example any minion who's id starts with ``webser`` and is running "
"Debian, or any minion who's id starts with db will be matched."
msgstr ""
#: ../../ref/cli/index.rst:114
msgid ""
"The type of matcher defaults to glob, but can be specified with the "
"corresponding letter followed by the ``@`` symbol. In the above example a "
"grain is used with ``G@`` as well as a regular expression with ``E@``. The "
"``webser*`` target does not need to be prefaced with a target type specifier"
" because it is a glob."
msgstr ""
#: ../../ref/cli/index.rst:121
msgid "Node Group Targeting"
msgstr ""
#: ../../ref/cli/index.rst:125
msgid ""
"Often the convenience of having a predefined group of minions to execute "
"targets on is desired. This can be accomplished with the new nodegroups "
"feature. Nodegroups allow for predefined compound targets to be declared in "
"the master configuration file:"
msgstr ""
#: ../../ref/cli/index.rst:137
msgid "Calling the Function"
msgstr ""
#: ../../ref/cli/index.rst:139
msgid ""
"The function to call on the specified target is placed after the target "
"specification."
msgstr ""
#: ../../ref/cli/index.rst:144
msgid "Functions may also accept arguments, space-delimited:"
msgstr ""
#: ../../ref/cli/index.rst:150
msgid "Optional, keyword arguments are also supported:"
msgstr ""
#: ../../ref/cli/index.rst:156
msgid "They are always in the form of ``kwarg=argument``."
msgstr ""
#: ../../ref/cli/index.rst:158
msgid "Arguments are formatted as YAML:"
msgstr ""
#: ../../ref/cli/index.rst:164
msgid ""
"Note: dictionaries must have curly braces around them (like the ``env`` "
"keyword argument above). This was changed in 0.15.1: in the above example, "
"the first argument used to be parsed as the dictionary ``{'echo \"Hello': "
"'$FIRST_NAME\"'}``. This was generally not the expected behavior."
msgstr ""
#: ../../ref/cli/index.rst:170
msgid ""
"If you want to test what parameters are actually passed to a module, use the"
" ``test.arg_repr`` command:"
msgstr ""
#: ../../ref/cli/index.rst:178
msgid "Finding available minion functions"
msgstr ""
#: ../../ref/cli/index.rst:180
msgid ""
"The Salt functions are self documenting, all of the function documentation "
"can be retried from the minions via the :func:`sys.doc` function:"
msgstr ""
#: ../../ref/cli/index.rst:188
msgid "Compound Command Execution"
msgstr ""
#: ../../ref/cli/index.rst:190
msgid ""
"If a series of commands needs to be sent to a single target specification "
"then the commands can be sent in a single publish. This can make gathering "
"groups of information faster, and lowers the stress on the network for "
"repeated commands."
msgstr ""
#: ../../ref/cli/index.rst:195
msgid ""
"Compound command execution works by sending a list of functions and "
"arguments instead of sending a single function and argument. The functions "
"are executed on the minion in the order they are defined on the command "
"line, and then the data from all of the commands are returned in a "
"dictionary. This means that the set of commands are called in a predictable "
"way, and the returned data can be easily interpreted."
msgstr ""
#: ../../ref/cli/index.rst:202
msgid ""
"Executing compound commands if done by passing a comma delimited list of "
"functions, followed by a comma delimited list of arguments:"
msgstr ""
#: ../../ref/cli/index.rst:209
msgid ""
"The trick to look out for here, is that if a function is being passed no "
"arguments, then there needs to be a placeholder for the absent arguments. "
"This is why in the above example, there are two commas right next to each "
"other. ``test.ping`` takes no arguments, so we need to add another comma, "
"otherwise Salt would attempt to pass \"foo\" to ``test.ping``."
msgstr ""
#: ../../ref/cli/index.rst:215
msgid ""
"If you need to pass arguments that include commas, then make sure you add "
"spaces around the commas that separate arguments. For example:"
msgstr ""
#: ../../ref/cli/index.rst:222
msgid ""
"You may change the arguments separator using the ``--args-separator`` "
"option:"
msgstr ""

View File

@ -1,177 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/cli/salt-call.rst:6
msgid "``salt-call``"
msgstr ""
#: ../../ref/cli/salt-call.rst:9
msgid "Synopsis"
msgstr ""
#: ../../ref/cli/salt-call.rst:16
msgid "Description"
msgstr ""
#: ../../ref/cli/salt-call.rst:18
msgid ""
"The salt-call command is used to run module functions locally on a minion "
"instead of executing them from the master."
msgstr ""
#: ../../ref/cli/salt-call.rst:22
msgid "Options"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:3
msgid "Print the version of Salt that is running."
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:7
msgid "Show program's dependencies and version number, and then exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:11
msgid "Show the help message and exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:15
msgid ""
"The location of the Salt configuration directory. This directory contains "
"the configuration files for Salt master and minions. The default location on"
" most systems is ``/etc/salt``."
msgstr ""
#: ../../ref/cli/salt-call.rst:30
msgid "Return the information generated by the Salt grains"
msgstr ""
#: ../../ref/cli/salt-call.rst:34
msgid ""
"Specify an additional directories to pull modules from, multiple directories"
" can be delimited by commas"
msgstr ""
#: ../../ref/cli/salt-call.rst:39
msgid ""
"Return the documentation for the specified module or for all modules if none"
" are specified"
msgstr ""
#: ../../ref/cli/salt-call.rst:44
msgid ""
"Specify the master to use. The minion must be authenticated with the master."
" If this option is omitted, the master options from the minion config will "
"be used. If multi masters are set up the first listed master that responds "
"will be used."
msgstr ""
#: ../../ref/cli/salt-call.rst:51
msgid ""
"Set salt-call to pass the return data to one or many returner interfaces. To"
" use many returner interfaces specify a comma delimited list of returners."
msgstr ""
#: ../../ref/cli/salt-call.rst:57
msgid "Run salt-call locally, as if there was no master running."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:2
msgid "Logging Options"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:4
msgid ""
"Logging options which override any settings defined on the configuration "
"files."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:9
msgid ""
"Console logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:16
msgid "Log file path. Default: |logfile|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:20
msgid ""
"Logfile logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:2
msgid "Output Options"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:6
msgid ""
"Pass in an alternative outputter to display the return of data. This "
"outputter can be any of the available outputters:"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:9
msgid ""
"``grains``, ``highstate``, ``json``, ``key``, ``overstatestage``, "
"``pprint``, ``raw``, ``txt``, ``yaml``"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:11
msgid ""
"Some outputters are formatted only for data returned from specific "
"functions; for instance, the ``grains`` outputter will not work for non-"
"grains data."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:15
msgid ""
"If an outputter is used that does not support the data passed into it, then "
"Salt will fall back on the ``pprint`` outputter and display the return data "
"using the Python ``pprint`` standard library module."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:20
msgid ""
"If using ``--out=json``, you will probably want ``--static`` as well. "
"Without the static option, you will get a JSON string for each minion. This "
"is due to using an iterative outputter. So if you want to feed it to a JSON "
"parser, use ``--static`` as well."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:27
msgid ""
"Print the output indented by the provided value in spaces. Negative values "
"disable indentation. Only applicable in outputters that support indentation."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:33
msgid "Write the output to the specified file."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:37
msgid "Disable all colored output"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:41
msgid "Force colored output"
msgstr ""
#: ../../ref/cli/salt-call.rst:67
msgid "See also"
msgstr ""
#: ../../ref/cli/salt-call.rst:69
msgid ":manpage:`salt(1)` :manpage:`salt-master(1)` :manpage:`salt-minion(1)`"
msgstr ""

View File

@ -1,153 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/cli/salt-cp.rst:6
msgid "``salt-cp``"
msgstr ""
#: ../../ref/cli/salt-cp.rst:8
msgid "Copy a file to a set of systems"
msgstr ""
#: ../../ref/cli/salt-cp.rst:11
msgid "Synopsis"
msgstr ""
#: ../../ref/cli/salt-cp.rst:22
msgid "Description"
msgstr ""
#: ../../ref/cli/salt-cp.rst:24
msgid ""
"Salt copy copies a local file out to all of the Salt minions matched by the "
"given target."
msgstr ""
#: ../../ref/cli/salt-cp.rst:28
msgid "Options"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:3
msgid "Print the version of Salt that is running."
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:7
msgid "Show program's dependencies and version number, and then exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:11
msgid "Show the help message and exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:15
msgid ""
"The location of the Salt configuration directory. This directory contains "
"the configuration files for Salt master and minions. The default location on"
" most systems is ``/etc/salt``."
msgstr ""
#: ../../ref/cli/_includes/timeout-option.rst:3
msgid ""
"The timeout in seconds to wait for replies from the Salt minions. The "
"timeout number specifies how long the command line client will wait to query"
" the minions and check on running jobs. Default: |timeout|"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:2
msgid "Logging Options"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:4
msgid ""
"Logging options which override any settings defined on the configuration "
"files."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:9
msgid ""
"Console logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:16
msgid "Log file path. Default: |logfile|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:20
msgid ""
"Logfile logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:2
msgid "Target Selection"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:6
msgid ""
"The target expression will be interpreted as a PCRE regular expression "
"rather than a shell glob."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:11
msgid ""
"The target expression will be interpreted as a comma-delimited list; "
"example: server1.foo.bar,server2.foo.bar,example7.quo.qux"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:16
msgid ""
"The target expression matches values returned by the Salt grains system on "
"the minions. The target expression is in the format of '<grain value>:<glob "
"expression>'; example: 'os:Arch*'"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:20
msgid ""
"This was changed in version 0.9.8 to accept glob expressions instead of "
"regular expression. To use regular expression matching with grains, use the "
"--grain-pcre option."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:26
msgid ""
"The target expression matches values returned by the Salt grains system on "
"the minions. The target expression is in the format of '<grain value>:< "
"regular expression>'; example: 'os:Arch.*'"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:32
msgid ""
"Use a predefined compound target defined in the Salt master configuration "
"file."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:37
msgid ""
"Instead of using shell globs to evaluate the target, use a range expression "
"to identify targets. Range expressions look like %cluster."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:40
msgid ""
"Using the Range option requires that a range server is set up and the "
"location of the range server is referenced in the master configuration file."
msgstr ""
#: ../../ref/cli/salt-cp.rst:45
msgid "See also"
msgstr ""
#: ../../ref/cli/salt-cp.rst:47
msgid ":manpage:`salt(1)` :manpage:`salt-master(1)` :manpage:`salt-minion(1)`"
msgstr ""

View File

@ -1,229 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/cli/salt-key.rst:6
msgid "``salt-key``"
msgstr ""
#: ../../ref/cli/salt-key.rst:9
msgid "Synopsis"
msgstr ""
#: ../../ref/cli/salt-key.rst:11
msgid "salt-key [ options ]"
msgstr ""
#: ../../ref/cli/salt-key.rst:14
msgid "Description"
msgstr ""
#: ../../ref/cli/salt-key.rst:16
msgid ""
"Salt-key executes simple management of Salt server public keys used for "
"authentication."
msgstr ""
#: ../../ref/cli/salt-key.rst:20
msgid "Options"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:3
msgid "Print the version of Salt that is running."
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:7
msgid "Show program's dependencies and version number, and then exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:11
msgid "Show the help message and exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:15
msgid ""
"The location of the Salt configuration directory. This directory contains "
"the configuration files for Salt master and minions. The default location on"
" most systems is ``/etc/salt``."
msgstr ""
#: ../../ref/cli/salt-key.rst:28
msgid "Suppress output"
msgstr ""
#: ../../ref/cli/salt-key.rst:32
msgid "Answer 'Yes' to all questions presented, defaults to False"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:2
msgid "Logging Options"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:4
msgid ""
"Logging options which override any settings defined on the configuration "
"files."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:5
msgid "Log file path. Default: |logfile|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:9
msgid ""
"Logfile logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:2
msgid "Output Options"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:6
msgid ""
"Pass in an alternative outputter to display the return of data. This "
"outputter can be any of the available outputters:"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:9
msgid ""
"``grains``, ``highstate``, ``json``, ``key``, ``overstatestage``, "
"``pprint``, ``raw``, ``txt``, ``yaml``"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:11
msgid ""
"Some outputters are formatted only for data returned from specific "
"functions; for instance, the ``grains`` outputter will not work for non-"
"grains data."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:15
msgid ""
"If an outputter is used that does not support the data passed into it, then "
"Salt will fall back on the ``pprint`` outputter and display the return data "
"using the Python ``pprint`` standard library module."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:20
msgid ""
"If using ``--out=json``, you will probably want ``--static`` as well. "
"Without the static option, you will get a JSON string for each minion. This "
"is due to using an iterative outputter. So if you want to feed it to a JSON "
"parser, use ``--static`` as well."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:27
msgid ""
"Print the output indented by the provided value in spaces. Negative values "
"disable indentation. Only applicable in outputters that support indentation."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:33
msgid "Write the output to the specified file."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:37
msgid "Disable all colored output"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:41
msgid "Force colored output"
msgstr ""
#: ../../ref/cli/salt-key.rst:44
msgid "Actions"
msgstr ""
#: ../../ref/cli/salt-key.rst:48
msgid ""
"List the public keys. The args \"pre\", \"un\", and \"unaccepted\" will list"
" unaccepted/unsigned keys. \"acc\" or \"accepted\" will list accepted/signed"
" keys. \"rej\" or \"rejected\" will list rejected keys. Finally, \"all\" "
"will list all keys."
msgstr ""
#: ../../ref/cli/salt-key.rst:55
msgid ""
"List all public keys on this Salt master: accepted, pending, and rejected."
msgstr ""
#: ../../ref/cli/salt-key.rst:60
msgid "Accept the named minion public key for command execution."
msgstr ""
#: ../../ref/cli/salt-key.rst:64
msgid "Accepts all pending public keys."
msgstr ""
#: ../../ref/cli/salt-key.rst:68
msgid "Reject the named minion public key."
msgstr ""
#: ../../ref/cli/salt-key.rst:72
msgid "Rejects all pending public keys."
msgstr ""
#: ../../ref/cli/salt-key.rst:76
msgid "Print the specified public key"
msgstr ""
#: ../../ref/cli/salt-key.rst:80
msgid "Print all public keys"
msgstr ""
#: ../../ref/cli/salt-key.rst:84
msgid ""
"Delete the named minion key or minion keys matching a glob for command "
"execution."
msgstr ""
#: ../../ref/cli/salt-key.rst:89
msgid "Delete all keys"
msgstr ""
#: ../../ref/cli/salt-key.rst:93
msgid "Print the named key's fingerprint"
msgstr ""
#: ../../ref/cli/salt-key.rst:97
msgid "Print all key's fingerprints"
msgstr ""
#: ../../ref/cli/salt-key.rst:101
msgid "Key Generation Options"
msgstr ""
#: ../../ref/cli/salt-key.rst:105
msgid "Set a name to generate a keypair for use with salt"
msgstr ""
#: ../../ref/cli/salt-key.rst:109
msgid ""
"Set the directory to save the generated keypair. Only works with "
"'gen_keys_dir' option; default is the current directory."
msgstr ""
#: ../../ref/cli/salt-key.rst:114
msgid ""
"Set the keysize for the generated key, only works with the '--gen-keys' "
"option, the key size must be 2048 or higher, otherwise it will be rounded up"
" to 2048. The default is 2048."
msgstr ""
#: ../../ref/cli/salt-key.rst:121
msgid "See also"
msgstr ""
#: ../../ref/cli/salt-key.rst:123
msgid ":manpage:`salt(7)` :manpage:`salt-master(1)` :manpage:`salt-minion(1)`"
msgstr ""

View File

@ -1,106 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/cli/salt-master.rst:6
msgid "``salt-master``"
msgstr ""
#: ../../ref/cli/salt-master.rst:8
msgid "The Salt master daemon, used to control the Salt minions"
msgstr ""
#: ../../ref/cli/salt-master.rst:11
msgid "Synopsis"
msgstr ""
#: ../../ref/cli/salt-master.rst:13
msgid "salt-master [ options ]"
msgstr ""
#: ../../ref/cli/salt-master.rst:16
msgid "Description"
msgstr ""
#: ../../ref/cli/salt-master.rst:18
msgid "The master daemon controls the Salt minions"
msgstr ""
#: ../../ref/cli/salt-master.rst:21
msgid "Options"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:3
msgid "Print the version of Salt that is running."
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:7
msgid "Show program's dependencies and version number, and then exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:11
msgid "Show the help message and exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:15
msgid ""
"The location of the Salt configuration directory. This directory contains "
"the configuration files for Salt master and minions. The default location on"
" most systems is ``/etc/salt``."
msgstr ""
#: ../../ref/cli/_includes/daemon-options.rst:3
msgid "Specify user to run |salt-daemon|"
msgstr ""
#: ../../ref/cli/_includes/daemon-options.rst:7
msgid "Run |salt-daemon| as a daemon"
msgstr ""
#: ../../ref/cli/_includes/daemon-options.rst:11
msgid ""
"Specify the location of the pidfile. Default: /var/run/|salt-daemon|.pid"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:2
msgid "Logging Options"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:4
msgid ""
"Logging options which override any settings defined on the configuration "
"files."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:9
msgid ""
"Console logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:16
msgid "Log file path. Default: |logfile|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:20
msgid ""
"Logfile logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/salt-master.rst:36
msgid "See also"
msgstr ""
#: ../../ref/cli/salt-master.rst:38
msgid ":manpage:`salt(1)` :manpage:`salt(7)` :manpage:`salt-minion(1)`"
msgstr ""

View File

@ -1,108 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/cli/salt-minion.rst:6
msgid "``salt-minion``"
msgstr ""
#: ../../ref/cli/salt-minion.rst:8
msgid "The Salt minion daemon, receives commands from a remote Salt master."
msgstr ""
#: ../../ref/cli/salt-minion.rst:11
msgid "Synopsis"
msgstr ""
#: ../../ref/cli/salt-minion.rst:13
msgid "salt-minion [ options ]"
msgstr ""
#: ../../ref/cli/salt-minion.rst:16
msgid "Description"
msgstr ""
#: ../../ref/cli/salt-minion.rst:18
msgid ""
"The Salt minion receives commands from the central Salt master and replies "
"with the results of said commands."
msgstr ""
#: ../../ref/cli/salt-minion.rst:22
msgid "Options"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:3
msgid "Print the version of Salt that is running."
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:7
msgid "Show program's dependencies and version number, and then exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:11
msgid "Show the help message and exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:15
msgid ""
"The location of the Salt configuration directory. This directory contains "
"the configuration files for Salt master and minions. The default location on"
" most systems is ``/etc/salt``."
msgstr ""
#: ../../ref/cli/_includes/daemon-options.rst:3
msgid "Specify user to run |salt-daemon|"
msgstr ""
#: ../../ref/cli/_includes/daemon-options.rst:7
msgid "Run |salt-daemon| as a daemon"
msgstr ""
#: ../../ref/cli/_includes/daemon-options.rst:11
msgid ""
"Specify the location of the pidfile. Default: /var/run/|salt-daemon|.pid"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:2
msgid "Logging Options"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:4
msgid ""
"Logging options which override any settings defined on the configuration "
"files."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:9
msgid ""
"Console logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:16
msgid "Log file path. Default: |logfile|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:20
msgid ""
"Logfile logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/salt-minion.rst:37
msgid "See also"
msgstr ""
#: ../../ref/cli/salt-minion.rst:39
msgid ":manpage:`salt(1)` :manpage:`salt(7)` :manpage:`salt-master(1)`"
msgstr ""

View File

@ -1,105 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/cli/salt-run.rst:6
msgid "``salt-run``"
msgstr ""
#: ../../ref/cli/salt-run.rst:8
msgid "Execute a Salt runner"
msgstr ""
#: ../../ref/cli/salt-run.rst:11
msgid "Synopsis"
msgstr ""
#: ../../ref/cli/salt-run.rst:18
msgid "Description"
msgstr ""
#: ../../ref/cli/salt-run.rst:20
msgid ""
"salt-run is the frontend command for executing ``Salt Runners``. Salt "
"runners are simple modules used to execute convenience functions on the "
"master"
msgstr ""
#: ../../ref/cli/salt-run.rst:25
msgid "Options"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:3
msgid "Print the version of Salt that is running."
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:7
msgid "Show program's dependencies and version number, and then exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:11
msgid "Show the help message and exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:15
msgid ""
"The location of the Salt configuration directory. This directory contains "
"the configuration files for Salt master and minions. The default location on"
" most systems is ``/etc/salt``."
msgstr ""
#: ../../ref/cli/_includes/timeout-option.rst:3
msgid ""
"The timeout in seconds to wait for replies from the Salt minions. The "
"timeout number specifies how long the command line client will wait to query"
" the minions and check on running jobs. Default: |timeout|"
msgstr ""
#: ../../ref/cli/salt-run.rst:36
msgid ""
"Display documentation for runners, pass a module or a runner to see "
"documentation on only that module/runner."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:2
msgid "Logging Options"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:4
msgid ""
"Logging options which override any settings defined on the configuration "
"files."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:9
msgid ""
"Console logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:16
msgid "Log file path. Default: |logfile|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:20
msgid ""
"Logfile logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/salt-run.rst:45
msgid "See also"
msgstr ""
#: ../../ref/cli/salt-run.rst:47
msgid ":manpage:`salt(1)` :manpage:`salt-master(1)` :manpage:`salt-minion(1)`"
msgstr ""

View File

@ -1,241 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/cli/salt-ssh.rst:6
msgid "``salt-ssh``"
msgstr ""
#: ../../ref/cli/salt-ssh.rst:9
msgid "Synopsis"
msgstr ""
#: ../../ref/cli/salt-ssh.rst:11
msgid "salt-ssh '*' [ options ] sys.doc"
msgstr ""
#: ../../ref/cli/salt-ssh.rst:13
msgid "salt-ssh -E '.*' [ options ] sys.doc cmd"
msgstr ""
#: ../../ref/cli/salt-ssh.rst:16
msgid "Description"
msgstr ""
#: ../../ref/cli/salt-ssh.rst:18
msgid ""
"Salt ssh allows for salt routines to be executed using only ssh for "
"transport"
msgstr ""
#: ../../ref/cli/salt-ssh.rst:21
msgid "Options"
msgstr ""
#: ../../ref/cli/salt-ssh.rst:25
msgid "Execute a raw shell command."
msgstr ""
#: ../../ref/cli/salt-ssh.rst:29
msgid ""
"Define which roster system to use, this defines if a database backend, "
"scanner, or custom roster system is used. Default is the flat file roster."
msgstr ""
#: ../../ref/cli/salt-ssh.rst:34
msgid ""
"Force a refresh of the master side data cache of the target's data. This is "
"needed if a target's grains have been changed and the auto refresh timeframe"
" has not been reached."
msgstr ""
#: ../../ref/cli/salt-ssh.rst:40
msgid ""
"Set the number of concurrent minions to communicate with. This value defines"
" how many processes are opened up at a time to manage connections, the more "
"running process the faster communication should be, default is 25."
msgstr ""
#: ../../ref/cli/salt-ssh.rst:47
msgid "Set te default password to attempt to use when authenticating."
msgstr ""
#: ../../ref/cli/salt-ssh.rst:51
msgid ""
"Set this flag to attempt to deploy the authorized ssh key with all minions. "
"This combined with --passwd can make initial deployment of keys very fast "
"and easy."
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:3
msgid "Print the version of Salt that is running."
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:7
msgid "Show program's dependencies and version number, and then exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:11
msgid "Show the help message and exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:15
msgid ""
"The location of the Salt configuration directory. This directory contains "
"the configuration files for Salt master and minions. The default location on"
" most systems is ``/etc/salt``."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:2
msgid "Target Selection"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:6
msgid ""
"The target expression will be interpreted as a PCRE regular expression "
"rather than a shell glob."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:11
msgid ""
"The target expression will be interpreted as a comma-delimited list; "
"example: server1.foo.bar,server2.foo.bar,example7.quo.qux"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:16
msgid ""
"The target expression matches values returned by the Salt grains system on "
"the minions. The target expression is in the format of '<grain value>:<glob "
"expression>'; example: 'os:Arch*'"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:20
msgid ""
"This was changed in version 0.9.8 to accept glob expressions instead of "
"regular expression. To use regular expression matching with grains, use the "
"--grain-pcre option."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:26
msgid ""
"The target expression matches values returned by the Salt grains system on "
"the minions. The target expression is in the format of '<grain value>:< "
"regular expression>'; example: 'os:Arch.*'"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:32
msgid ""
"Use a predefined compound target defined in the Salt master configuration "
"file."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:37
msgid ""
"Instead of using shell globs to evaluate the target, use a range expression "
"to identify targets. Range expressions look like %cluster."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:40
msgid ""
"Using the Range option requires that a range server is set up and the "
"location of the range server is referenced in the master configuration file."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:2
msgid "Logging Options"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:4
msgid ""
"Logging options which override any settings defined on the configuration "
"files."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:9
msgid ""
"Console logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:16
msgid "Log file path. Default: |logfile|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:20
msgid ""
"Logfile logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:2
msgid "Output Options"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:6
msgid ""
"Pass in an alternative outputter to display the return of data. This "
"outputter can be any of the available outputters:"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:9
msgid ""
"``grains``, ``highstate``, ``json``, ``key``, ``overstatestage``, "
"``pprint``, ``raw``, ``txt``, ``yaml``"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:11
msgid ""
"Some outputters are formatted only for data returned from specific "
"functions; for instance, the ``grains`` outputter will not work for non-"
"grains data."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:15
msgid ""
"If an outputter is used that does not support the data passed into it, then "
"Salt will fall back on the ``pprint`` outputter and display the return data "
"using the Python ``pprint`` standard library module."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:20
msgid ""
"If using ``--out=json``, you will probably want ``--static`` as well. "
"Without the static option, you will get a JSON string for each minion. This "
"is due to using an iterative outputter. So if you want to feed it to a JSON "
"parser, use ``--static`` as well."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:27
msgid ""
"Print the output indented by the provided value in spaces. Negative values "
"disable indentation. Only applicable in outputters that support indentation."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:33
msgid "Write the output to the specified file."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:37
msgid "Disable all colored output"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:41
msgid "Force colored output"
msgstr ""
#: ../../ref/cli/salt-ssh.rst:69
msgid "See also"
msgstr ""
#: ../../ref/cli/salt-ssh.rst:71
msgid ":manpage:`salt(7)` :manpage:`salt-master(1)` :manpage:`salt-minion(1)`"
msgstr ""

View File

@ -1,110 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/cli/salt-syndic.rst:6
msgid "``salt-syndic``"
msgstr ""
#: ../../ref/cli/salt-syndic.rst:8
msgid ""
"The Salt syndic daemon, a special minion that passes through commands from a"
" higher master"
msgstr ""
#: ../../ref/cli/salt-syndic.rst:12
msgid "Synopsis"
msgstr ""
#: ../../ref/cli/salt-syndic.rst:14
msgid "salt-syndic [ options ]"
msgstr ""
#: ../../ref/cli/salt-syndic.rst:17
msgid "Description"
msgstr ""
#: ../../ref/cli/salt-syndic.rst:19
msgid ""
"The Salt syndic daemon, a special minion that passes through commands from a"
" higher master."
msgstr ""
#: ../../ref/cli/salt-syndic.rst:23
msgid "Options"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:3
msgid "Print the version of Salt that is running."
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:7
msgid "Show program's dependencies and version number, and then exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:11
msgid "Show the help message and exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:15
msgid ""
"The location of the Salt configuration directory. This directory contains "
"the configuration files for Salt master and minions. The default location on"
" most systems is ``/etc/salt``."
msgstr ""
#: ../../ref/cli/_includes/daemon-options.rst:3
msgid "Specify user to run |salt-daemon|"
msgstr ""
#: ../../ref/cli/_includes/daemon-options.rst:7
msgid "Run |salt-daemon| as a daemon"
msgstr ""
#: ../../ref/cli/_includes/daemon-options.rst:11
msgid ""
"Specify the location of the pidfile. Default: /var/run/|salt-daemon|.pid"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:2
msgid "Logging Options"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:4
msgid ""
"Logging options which override any settings defined on the configuration "
"files."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:9
msgid ""
"Console logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:16
msgid "Log file path. Default: |logfile|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:20
msgid ""
"Logfile logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/salt-syndic.rst:38
msgid "See also"
msgstr ""
#: ../../ref/cli/salt-syndic.rst:40
msgid ":manpage:`salt(1)` :manpage:`salt-master(1)` :manpage:`salt-minion(1)`"
msgstr ""

View File

@ -1,317 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/cli/salt.rst:6
msgid "``salt``"
msgstr ""
#: ../../ref/cli/salt.rst:9
msgid "Synopsis"
msgstr ""
#: ../../ref/cli/salt.rst:11
msgid "salt '*' [ options ] sys.doc"
msgstr ""
#: ../../ref/cli/salt.rst:13
msgid "salt -E '.*' [ options ] sys.doc cmd"
msgstr ""
#: ../../ref/cli/salt.rst:15
msgid "salt -G 'os:Arch.*' [ options ] test.ping"
msgstr ""
#: ../../ref/cli/salt.rst:17
msgid ""
"salt -C 'G@os:Arch.* and webserv* or G@kernel:FreeBSD' [ options ] test.ping"
msgstr ""
#: ../../ref/cli/salt.rst:20
msgid "Description"
msgstr ""
#: ../../ref/cli/salt.rst:22
msgid ""
"Salt allows for commands to be executed across a swath of remote systems in "
"parallel. This means that remote systems can be both controlled and queried "
"with ease."
msgstr ""
#: ../../ref/cli/salt.rst:27
msgid "Options"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:3
msgid "Print the version of Salt that is running."
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:7
msgid "Show program's dependencies and version number, and then exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:11
msgid "Show the help message and exit"
msgstr ""
#: ../../ref/cli/_includes/common-options.rst:15
msgid ""
"The location of the Salt configuration directory. This directory contains "
"the configuration files for Salt master and minions. The default location on"
" most systems is ``/etc/salt``."
msgstr ""
#: ../../ref/cli/_includes/timeout-option.rst:3
msgid ""
"The timeout in seconds to wait for replies from the Salt minions. The "
"timeout number specifies how long the command line client will wait to query"
" the minions and check on running jobs. Default: |timeout|"
msgstr ""
#: ../../ref/cli/salt.rst:38
msgid ""
"By default as of version 0.9.8 the salt command returns data to the console "
"as it is received from minions, but previous releases would return data only"
" after all data was received. To only return the data with a hard timeout "
"and after all minions have returned then use the static option."
msgstr ""
#: ../../ref/cli/salt.rst:45
msgid ""
"Instead of waiting for the job to run on minions only print the jod id of "
"the started execution and complete."
msgstr ""
#: ../../ref/cli/salt.rst:52
msgid ""
"Override the configured state_output value for minion output. Default: full"
msgstr ""
#: ../../ref/cli/salt.rst:57
msgid ""
"Execute the routine on a random subset of the targeted minions. The minions"
" will be verified that they have the named function before executing."
msgstr ""
#: ../../ref/cli/salt.rst:63
msgid ""
"Turn on verbosity for the salt call, this will cause the salt command to "
"print out extra data like the job id."
msgstr ""
#: ../../ref/cli/salt.rst:68
msgid ""
"Instead of executing on all targeted minions at once, execute on a "
"progressive set of minions. This option takes an argument in the form of an "
"explicit number of minions to execute at once, or a percentage of minions to"
" execute on."
msgstr ""
#: ../../ref/cli/salt.rst:75
msgid ""
"Pass in an external authentication medium to validate against. The "
"credentials will be prompted for. Can be used with the -T option."
msgstr ""
#: ../../ref/cli/salt.rst:80
msgid ""
"Used in conjunction with the -a option. This creates a token that allows for"
" the authenticated user to send commands without needing to re-authenticate."
msgstr ""
#: ../../ref/cli/salt.rst:86
msgid ""
"Chose an alternative returner to call on the minion, if an alternative "
"returner is used then the return will not come back to the command line but "
"will be sent to the specified return system."
msgstr ""
#: ../../ref/cli/salt.rst:92
msgid ""
"Return the documentation for the module functions available on the minions"
msgstr ""
#: ../../ref/cli/salt.rst:96
msgid ""
"Set the special argument used as a delimiter between command arguments of "
"compound commands. This is useful when one wants to pass commas as arguments"
" to some of the commands in a compound command."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:2
msgid "Logging Options"
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:4
msgid ""
"Logging options which override any settings defined on the configuration "
"files."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:9
msgid ""
"Console logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:16
msgid "Log file path. Default: |logfile|."
msgstr ""
#: ../../ref/cli/_includes/logging-options.rst:20
msgid ""
"Logfile logging log level. One of ``all``, ``garbage``, ``trace``, "
"``debug``, ``info``, ``warning``, ``error``, ``quiet``. Default: |loglevel|."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:2
msgid "Target Selection"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:6
msgid ""
"The target expression will be interpreted as a PCRE regular expression "
"rather than a shell glob."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:11
msgid ""
"The target expression will be interpreted as a comma-delimited list; "
"example: server1.foo.bar,server2.foo.bar,example7.quo.qux"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:16
msgid ""
"The target expression matches values returned by the Salt grains system on "
"the minions. The target expression is in the format of '<grain value>:<glob "
"expression>'; example: 'os:Arch*'"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:20
msgid ""
"This was changed in version 0.9.8 to accept glob expressions instead of "
"regular expression. To use regular expression matching with grains, use the "
"--grain-pcre option."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:26
msgid ""
"The target expression matches values returned by the Salt grains system on "
"the minions. The target expression is in the format of '<grain value>:< "
"regular expression>'; example: 'os:Arch.*'"
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:32
msgid ""
"Use a predefined compound target defined in the Salt master configuration "
"file."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:37
msgid ""
"Instead of using shell globs to evaluate the target, use a range expression "
"to identify targets. Range expressions look like %cluster."
msgstr ""
#: ../../ref/cli/_includes/target-selection.rst:40
msgid ""
"Using the Range option requires that a range server is set up and the "
"location of the range server is referenced in the master configuration file."
msgstr ""
#: ../../ref/cli/_includes/extended-target-selection.rst:3
msgid ""
"Utilize many target definitions to make the call very granular. This option "
"takes a group of targets separated by ``and`` or ``or``. The default matcher"
" is a glob as usual. If something other than a glob is used, preface it with"
" the letter denoting the type; example: 'webserv* and G@os:Debian or E@db*' "
"Make sure that the compound target is encapsulated in quotes."
msgstr ""
#: ../../ref/cli/_includes/extended-target-selection.rst:11
msgid "Instead of using shell globs, use the return code of a function."
msgstr ""
#: ../../ref/cli/_includes/extended-target-selection.rst:16
msgid ""
"Instead of using shell globs to evaluate the target, use a pillar value to "
"identify targets. The syntax for the target is the pillar key followed by a "
"glob expression: \"role:production*\""
msgstr ""
#: ../../ref/cli/_includes/extended-target-selection.rst:22
msgid "Match based on Subnet (CIDR notation) or IPv4 address."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:2
msgid "Output Options"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:6
msgid ""
"Pass in an alternative outputter to display the return of data. This "
"outputter can be any of the available outputters:"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:9
msgid ""
"``grains``, ``highstate``, ``json``, ``key``, ``overstatestage``, "
"``pprint``, ``raw``, ``txt``, ``yaml``"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:11
msgid ""
"Some outputters are formatted only for data returned from specific "
"functions; for instance, the ``grains`` outputter will not work for non-"
"grains data."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:15
msgid ""
"If an outputter is used that does not support the data passed into it, then "
"Salt will fall back on the ``pprint`` outputter and display the return data "
"using the Python ``pprint`` standard library module."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:20
msgid ""
"If using ``--out=json``, you will probably want ``--static`` as well. "
"Without the static option, you will get a JSON string for each minion. This "
"is due to using an iterative outputter. So if you want to feed it to a JSON "
"parser, use ``--static`` as well."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:27
msgid ""
"Print the output indented by the provided value in spaces. Negative values "
"disable indentation. Only applicable in outputters that support indentation."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:33
msgid "Write the output to the specified file."
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:37
msgid "Disable all colored output"
msgstr ""
#: ../../ref/cli/_includes/output-options.rst:41
msgid "Force colored output"
msgstr ""
#: ../../ref/cli/salt.rst:111
msgid "See also"
msgstr ""
#: ../../ref/cli/salt.rst:113
msgid ":manpage:`salt(7)` :manpage:`salt-master(1)` :manpage:`salt-minion(1)`"
msgstr ""

View File

@ -1,48 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/clientacl.rst:6
msgid "Client ACL system"
msgstr ""
#: ../../ref/clientacl.rst:8
msgid ""
"The salt client ACL system is a means to allow system users other than root "
"to have access to execute select salt commands on minions from the master."
msgstr ""
#: ../../ref/clientacl.rst:11
msgid ""
"The client ACL system is configured in the master configuration file via the"
" ``client_acl`` configuration option. Under the ``client_acl`` configuration"
" option the users open to send commands are specified and then a list of "
"regular expressions which specify the minion functions which will be made "
"available to specified user. This configuration is much like the ``peer`` "
"configuration:"
msgstr ""
#: ../../ref/clientacl.rst:28
msgid "Permission Issues"
msgstr ""
#: ../../ref/clientacl.rst:30
msgid ""
"Directories required for ``client_acl`` must be modified to be readable by "
"the users specified:"
msgstr ""
#: ../../ref/clientacl.rst:37
msgid ""
"If you are upgrading from earlier versions of salt you must also remove any "
"existing user keys and re-start the Salt master:"
msgstr ""

View File

@ -1,353 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/clients/index.rst:9
msgid "Python client API"
msgstr ""
#: ../../ref/clients/index.rst:11
msgid ""
"Salt is written to be completely API centric, Salt minions and master can be"
" built directly into third party applications as a communication layer. The "
"Salt client API is very straightforward."
msgstr ""
#: ../../ref/clients/index.rst:15
msgid ""
"A number of client command methods are available depending on the exact "
"behavior desired."
msgstr ""
#: ../../ref/clients/index.rst:19
msgid "LocalClient"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient:1
msgid ""
"``LocalClient`` is the same interface used by the :command:`salt` command-"
"line tool on the Salt Master. ``LocalClient`` is used to send a command to "
"Salt minions to execute :ref:`execution modules <all-salt.modules>` and "
"return the results to the Salt Master."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient:6
msgid ""
"Importing and using ``LocalClient`` must be done on the same machine as the "
"Salt Master and it must be done using the same user that the Salt Master is "
"running as (unless :conf_master:`external_auth` is configured and "
"authentication credentials are included in the execution."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:1
msgid ""
"The cmd method will execute and wait for the timeout period for all minions "
"to reply, then it will return all minion data at once."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:4
#: ../../../salt/client/__init__.pydocstring of salt.client.Caller:8
msgid "Usage:"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:12
msgid "With authentication:"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:29
msgid "With extra keyword arguments for the command function to be run:"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:35
msgid "Compound command usage:"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:41
msgid ""
"Which minions to target for the execution. Default is shell glob. Modified "
"by the ``expr_form`` option."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:45
msgid ""
"The module and function to call on the specified minions of the form "
"``module.function``. For example ``test.ping`` or ``grains.items``. "
"Compound commands Multiple functions may be called in a single publish "
"by passing a list of commands. This can dramatically lower overhead "
"and speed up the application communicating with Salt. This requires "
"that the ``arg`` param is a list of lists. The ``fun`` list and the "
"``arg`` list must correlate by index meaning a function that does not "
"take arguments must still have a corresponding empty list at the "
"expected index."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:45
msgid ""
"The module and function to call on the specified minions of the form "
"``module.function``. For example ``test.ping`` or ``grains.items``."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:56
msgid "Compound commands"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:50
msgid ""
"Multiple functions may be called in a single publish by passing a list of "
"commands. This can dramatically lower overhead and speed up the application "
"communicating with Salt."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:54
msgid ""
"This requires that the ``arg`` param is a list of lists. The ``fun`` list "
"and the ``arg`` list must correlate by index meaning a function that does "
"not take arguments must still have a corresponding empty list at the "
"expected index."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:60
msgid ""
"A list of arguments to pass to the remote function. If the function takes no"
" arguments ``arg`` may be omitted except when executing a compound command."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:65
msgid ""
"Seconds to wait after the last minion returns but before all minions return."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:68
msgid ""
"The type of ``tgt``. Allowed values: * ``glob`` - Bash glob completion - "
"Default * ``pcre`` - Perl style regular expression * ``list`` - Python list "
"of hosts * ``grain`` - Match based on a grain comparison * ``grain_pcre`` - "
"Grain comparison with a regex * ``pillar`` - Pillar data comparison * "
"``nodegroup`` - Match on nodegroup * ``range`` - Use a Range server for "
"matching * ``compound`` - Pass a compound match string"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:68
msgid "The type of ``tgt``. Allowed values:"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:70
msgid "``glob`` - Bash glob completion - Default"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:71
msgid "``pcre`` - Perl style regular expression"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:72
msgid "``list`` - Python list of hosts"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:73
msgid "``grain`` - Match based on a grain comparison"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:74
msgid "``grain_pcre`` - Grain comparison with a regex"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:75
msgid "``pillar`` - Pillar data comparison"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:76
msgid "``nodegroup`` - Match on nodegroup"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:77
msgid "``range`` - Use a Range server for matching"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:78
msgid "``compound`` - Pass a compound match string"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:80
msgid ""
"The returner to use. The value passed can be single returner, or a comma "
"delimited list of returners to call in order on the minions"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:84
msgid "A dictionary with keyword arguments for the function."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:86
msgid ""
"Optional keyword arguments. Authentication credentials may be passed when "
"using :conf_master:`external_auth`. * ``eauth`` - the external_auth backend"
" * ``username`` and ``password`` * ``token``"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:86
msgid "Optional keyword arguments."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:88
msgid ""
"Authentication credentials may be passed when using "
":conf_master:`external_auth`."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:91
msgid "``eauth`` - the external_auth backend"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:92
msgid "``username`` and ``password``"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:93
msgid "``token``"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.LocalClient.cmd:95
msgid ""
"A dictionary with the result of the execution, keyed by minion ID. A "
"compound command will return a sub-dictionary keyed by function name."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of
#: salt.client.LocalClient.cmd_async:1
msgid "Execute a command and get back the jid, don't wait for anything"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of
#: salt.client.LocalClient.cmd_async:3
#: ../../../salt/client/__init__.pydocstring of
#: salt.client.LocalClient.cmd_cli:4 ../../../salt/client/__init__.pydocstring
#: of salt.client.LocalClient.cmd_iter:3
#: ../../../salt/client/__init__.pydocstring of
#: salt.client.LocalClient.cmd_iter_no_block:3
msgid ""
"The function signature is the same as :py:meth:`cmd` with the following "
"exceptions."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of
#: salt.client.LocalClient.cmd_async:6
msgid "A job ID"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of
#: salt.client.LocalClient.cmd_cli:1
msgid ""
"Used by the :command:`salt` CLI. This method returns minion returns as the "
"come back and attempts to block until all minions return."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of
#: salt.client.LocalClient.cmd_cli:7
msgid "Print extra information about the running command"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of
#: salt.client.LocalClient.cmd_cli:8
msgid "A generator"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of
#: salt.client.LocalClient.cmd_iter:1
msgid "Yields the individual minion returns as they come in"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of
#: salt.client.LocalClient.cmd_iter_no_block:1
msgid "Blocks while waiting for individual minions to return."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of
#: salt.client.LocalClient.cmd_iter_no_block:6
msgid ""
"None until the next minion returns. This allows for actions to be injected "
"in between minion returns."
msgstr ""
#: ../../ref/clients/index.rst:25
msgid "Salt Caller"
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.Caller:1
msgid ""
"``Caller`` is the same interface used by the :command:`salt-call` command-"
"line tool on the Salt Minion."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.Caller:4
msgid ""
"Importing and using ``Caller`` must be done on the same machine as a Salt "
"Minion and it must be done using the same user that the Salt Minion is "
"running as."
msgstr ""
#: ../../../salt/client/__init__.pydocstring of salt.client.Caller.function:1
msgid "Call a single salt function"
msgstr ""
#: ../../ref/clients/index.rst:31
msgid "RunnerClient"
msgstr ""
#: ../../../salt/runner.pydocstring of salt.runner.RunnerClient:1
msgid ""
"``RunnerClient`` is the same interface used by the :command:`salt-run` "
"command-line tool on the Salt Master. It executes :ref:`runner modules <all-"
"salt.runners>` which run on the Salt Master."
msgstr ""
#: ../../../salt/runner.pydocstring of salt.runner.RunnerClient:5
msgid ""
"Importing and using ``RunnerClient`` must be done on the same machine as the"
" Salt Master and it must be done using the same user that the Salt Master is"
" running as."
msgstr ""
#: ../../../salt/runner.pydocstring of salt.runner.RunnerClient.cmd:1
msgid "Execute a runner with the given arguments"
msgstr ""
#: ../../../salt/runner.pydocstring of salt.runner.RunnerClient.low:1
msgid "Pass in the runner function name and the low data structure"
msgstr ""
#: ../../ref/clients/index.rst:37
msgid "WheelClient"
msgstr ""
#: ../../../salt/wheel/__init__.pydocstring of salt.wheel.Wheel:1
msgid ""
"``WheelClient`` is an interface to Salt's :ref:`wheel modules <all-"
"salt.wheel>`. Wheel modules interact with various parts of the Salt Master."
msgstr ""
#: ../../../salt/wheel/__init__.pydocstring of salt.wheel.Wheel:5
msgid ""
"Importing and using ``WheelClient`` must be done on the same machine as the "
"Salt Master and it must be done using the same user that the Salt Master is "
"running as."
msgstr ""
#: ../../../salt/wheel/__init__.pydocstring of salt.wheel.Wheel.call_func:1
msgid "Execute a master control function"
msgstr ""
#: ../../../salt/wheel/__init__.pydocstring of salt.wheel.Wheel.master_call:1
msgid ""
"Send a function call to a wheel module through the master network interface "
"Expects that one of the kwargs is key 'fun' whose value is the namestring of"
" the function to call"
msgstr ""

View File

@ -1,24 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/configuration/examples.rst:6
msgid "Configuration file examples"
msgstr ""
#: ../../ref/configuration/examples.rst:15
msgid "Example master configuration file"
msgstr ""
#: ../../ref/configuration/examples.rst:23
msgid "Example minion configuration file"
msgstr ""

View File

@ -1,28 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/configuration/logging/handlers/index.rst:7
msgid "External Logging Handlers"
msgstr ""
#: ../../<autosummary>:1
msgid ":obj:`logstash_mod <salt.log.handlers.logstash_mod>`\\"
msgstr ""
#: ../../<autosummary>:1 ../../<autosummary>:1
msgid "Pedro Algarvio (pedro@algarvio.me)"
msgstr ""
#: ../../<autosummary>:1
msgid ":obj:`sentry_mod <salt.log.handlers.sentry_mod>`\\"
msgstr ""

View File

@ -1,118 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:7
msgid "Logstash Logging Handler"
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:11
msgid "This module provides some `Logstash`_ logging handlers."
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:15
msgid "UDP Logging Handler"
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:17
msgid ""
"In order to setup the datagram handler for `Logstash`_, please define on the"
" salt configuration file:"
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:27
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:54
msgid "On the `Logstash`_ configuration file you need something like:"
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:39
msgid ""
"Please read the `UDP input`_ configuration page for additional information."
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:43
msgid "ZeroMQ Logging Handler"
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:45
msgid ""
"In order to setup the ZMQ handler for `Logstash`_, please define on the salt"
" configuration file:"
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:70
msgid ""
"Please read the `ZeroMQ input`_ configuration page for additional "
"information."
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:73
msgid "Important Logstash Setting"
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:75
msgid ""
"One of the most important settings that you should not forget on your "
"`Logstash`_ configuration file regarding these logging handlers is "
"``format``. Both the `UDP` and `ZeroMQ` inputs need to have ``format`` as "
"``json_event`` which is what we send over the wire."
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:83
msgid "Log Level"
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:85
msgid ""
"Both the ``logstash_udp_handler`` and the ``logstash_zmq_handler`` "
"configuration sections accept an additional setting ``log_level``. If not "
"set, the logging level used will be the one defined for ``log_level`` in the"
" global configuration file section."
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:91
msgid "HWM"
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:93
msgid ""
"The `high water mark`_ for the ZMQ socket setting. Only applicable for the "
"``logstash_zmq_handler``."
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:98
msgid "Inspiration"
msgstr ""
#: ../../../salt/log/handlers/logstash_mod.pydocstring of
#: salt.log.handlers.logstash_mod:100
msgid ""
"This work was inspired in `pylogstash`_, `python-logstash`_, `canary`_ and "
"the `PyZMQ logging handler`_."
msgstr ""

View File

@ -1,67 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../../salt/log/handlers/sentry_mod.pydocstring of
#: salt.log.handlers.sentry_mod:7
msgid "Sentry Logging Handler"
msgstr ""
#: ../../../salt/log/handlers/sentry_mod.pydocstring of
#: salt.log.handlers.sentry_mod:11
msgid ""
"Configuring the python `Sentry`_ client, `Raven`_, should be done under the "
"``sentry_handler`` configuration key. At the bare minimum, you need to "
"define the `DSN`_. As an example:"
msgstr ""
#: ../../../salt/log/handlers/sentry_mod.pydocstring of
#: salt.log.handlers.sentry_mod:21
msgid "More complex configurations can be achieved, for example:"
msgstr ""
#: ../../../salt/log/handlers/sentry_mod.pydocstring of
#: salt.log.handlers.sentry_mod:34
msgid ""
"All the client configuration keys are supported, please see the `Raven "
"client documentation`_."
msgstr ""
#: ../../../salt/log/handlers/sentry_mod.pydocstring of
#: salt.log.handlers.sentry_mod:37
msgid ""
"The default logging level for the sentry handler is ``ERROR``. If you wish "
"to define a different one, define ``log_level`` under the ``sentry_handler``"
" configuration key:"
msgstr ""
#: ../../../salt/log/handlers/sentry_mod.pydocstring of
#: salt.log.handlers.sentry_mod:48
msgid ""
"The available log levels are those also available for the salt ``cli`` tools"
" and configuration; ``salt --help`` should give you the required "
"information."
msgstr ""
#: ../../../salt/log/handlers/sentry_mod.pydocstring of
#: salt.log.handlers.sentry_mod:54
msgid "Threaded Transports"
msgstr ""
#: ../../../salt/log/handlers/sentry_mod.pydocstring of
#: salt.log.handlers.sentry_mod:56
msgid ""
"Raven's documents rightly suggest using its threaded transport for critical "
"applications. However, don't forget that if you start having troubles with "
"Salt after enabling the threaded transport, please try switching to a non-"
"threaded transport to see if that fixes your problem."
msgstr ""

View File

@ -1,168 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/configuration/logging/index.rst:6
msgid "Logging"
msgstr ""
#: ../../ref/configuration/logging/index.rst:8
msgid ""
"The salt project tries to get the logging to work for you and help us solve "
"any issues you might find along the way."
msgstr ""
#: ../../ref/configuration/logging/index.rst:11
msgid ""
"If you want to get some more information on the nitty-gritty of salt's "
"logging system, please head over to the :doc:`logging development "
"document</topics/development/logging>`, if all you're after is salt's "
"logging configurations, please continue reading."
msgstr ""
#: ../../ref/configuration/logging/index.rst:18
msgid "Available Configuration Settings"
msgstr ""
#: ../../ref/configuration/logging/index.rst:23
msgid "``log_file``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:25
msgid ""
"The log records can be sent to a regular file, local path name, or network "
"location. Remote logging works best when configured to use rsyslogd(8) "
"(e.g.: ``file:///dev/log``), with rsyslogd(8) configured for network "
"logging. The format for remote addresses is: "
"``<file|udp|tcp>://<host|socketpath>:<port-if-required>/<log-facility>``."
msgstr ""
#: ../../ref/configuration/logging/index.rst:30
msgid ""
"Default: Dependent of the binary being executed, for example, for ``salt-"
"master``, ``/var/log/salt/master``."
msgstr ""
#: ../../ref/configuration/logging/index.rst:34
msgid "Examples:"
msgstr ""
#: ../../ref/configuration/logging/index.rst:60
msgid "``log_level``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:62
#: ../../ref/configuration/logging/index.rst:79
msgid "Default: ``warning``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:64
msgid ""
"The level of log record messages to send to the console. One of ``all``, "
"``garbage``, ``trace``, ``debug``, ``info``, ``warning``, ``error``, "
"``critical``, ``quiet``."
msgstr ""
#: ../../ref/configuration/logging/index.rst:77
msgid "``log_level_logfile``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:81
msgid ""
"The level of messages to send to the log file. One of ``all``, ``garbage``, "
"``trace``, ``debug``, ``info``, ``warning``, ``error``, ``critical``, "
"``quiet``."
msgstr ""
#: ../../ref/configuration/logging/index.rst:94
msgid "``log_datefmt``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:96
msgid "Default: ``%H:%M:%S``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:98
msgid ""
"The date and time format used in console log messages. Allowed date/time "
"formatting can be seen on :func:`time.strftime <python2:time.strftime>`."
msgstr ""
#: ../../ref/configuration/logging/index.rst:110
msgid "``log_datefmt_logfile``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:112
msgid "Default: ``%Y-%m-%d %H:%M:%S``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:114
msgid ""
"The date and time format used in log file messages. Allowed date/time "
"formatting can be seen on :func:`time.strftime <python2:time.strftime>`."
msgstr ""
#: ../../ref/configuration/logging/index.rst:126
msgid "``log_fmt_console``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:128
msgid "Default: ``[%(levelname)-8s] %(message)s``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:130
msgid ""
"The format of the console logging messages. Allowed formatting options can "
"be seen on the :ref:`LogRecord attributes <python2:logrecord-attributes>`."
msgstr ""
#: ../../ref/configuration/logging/index.rst:142
msgid "``log_fmt_logfile``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:144
msgid ""
"Default: ``%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] "
"%(message)s``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:146
msgid ""
"The format of the log file logging messages. Allowed formatting options can "
"be seen on the :ref:`LogRecord attributes <python2:logrecord-attributes>`."
msgstr ""
#: ../../ref/configuration/logging/index.rst:158
msgid "``log_granular_levels``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:160
msgid "Default: ``{}``"
msgstr ""
#: ../../ref/configuration/logging/index.rst:162
msgid ""
"This can be used to control logging levels more specifically. The example "
"sets the main salt library at the 'warning' level, but sets ``salt.modules``"
" to log at the ``debug`` level:"
msgstr ""
#: ../../ref/configuration/logging/index.rst:174
msgid "External Logging Handlers"
msgstr ""
#: ../../ref/configuration/logging/index.rst:176
msgid ""
"Besides the internal logging handlers used by salt, there are some external "
"which can be used, see the :doc:`external logging handlers<handlers/index>` "
"document."
msgstr ""

View File

@ -1,950 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/configuration/master.rst:8
msgid "Configuring the Salt Master"
msgstr ""
#: ../../ref/configuration/master.rst:10
msgid ""
"The Salt system is amazingly simple and easy to configure, the two "
"components of the Salt system each have a respective configuration file. The"
" :command:`salt-master` is configured via the master configuration file, and"
" the :command:`salt-minion` is configured via the minion configuration file."
msgstr ""
#: ../../ref/configuration/master.rst:16
msgid ""
":ref:`example master configuration file <configuration-examples-master>`"
msgstr ""
#: ../../ref/configuration/master.rst:18
msgid ""
"The configuration file for the salt-master is located at "
":file:`/etc/salt/master`. The available options are as follows:"
msgstr ""
#: ../../ref/configuration/master.rst:22
msgid "Primary Master Configuration"
msgstr ""
#: ../../ref/configuration/master.rst:28
msgid "``interface``"
msgstr ""
#: ../../ref/configuration/master.rst:30
msgid "Default: ``0.0.0.0`` (all interfaces)"
msgstr ""
#: ../../ref/configuration/master.rst:32
msgid "The local interface to bind to."
msgstr ""
#: ../../ref/configuration/master.rst:41
msgid "``publish_port``"
msgstr ""
#: ../../ref/configuration/master.rst:43
msgid "Default: ``4505``"
msgstr ""
#: ../../ref/configuration/master.rst:45
msgid "The network port to set up the publication interface"
msgstr ""
#: ../../ref/configuration/master.rst:55
msgid "``user``"
msgstr ""
#: ../../ref/configuration/master.rst:57
msgid "Default: ``root``"
msgstr ""
#: ../../ref/configuration/master.rst:59
msgid "The user to run the Salt processes"
msgstr ""
#: ../../ref/configuration/master.rst:68
msgid "``max_open_files``"
msgstr ""
#: ../../ref/configuration/master.rst:70
msgid "Default: ``max_open_files``"
msgstr ""
#: ../../ref/configuration/master.rst:72
msgid ""
"Each minion connecting to the master uses AT LEAST one file descriptor, the "
"master subscription connection. If enough minions connect you might start "
"seeing on the console(and then salt-master crashes)::"
msgstr ""
#: ../../ref/configuration/master.rst:79
msgid ""
"By default this value will be the one of `ulimit -Hn`, i.e., the hard limit "
"for max open files."
msgstr ""
#: ../../ref/configuration/master.rst:82
msgid ""
"If you wish to set a different value than the default one, uncomment and "
"configure this setting. Remember that this value CANNOT be higher than the "
"hard limit. Raising the hard limit depends on your OS and/or distribution, a"
" good way to find the limit is to search the internet for(for example)::"
msgstr ""
#: ../../ref/configuration/master.rst:96
msgid "``worker_threads``"
msgstr ""
#: ../../ref/configuration/master.rst:98
msgid "Default: ``5``"
msgstr ""
#: ../../ref/configuration/master.rst:100
msgid ""
"The number of threads to start for receiving commands and replies from "
"minions. If minions are stalling on replies because you have many minions, "
"raise the worker_threads value."
msgstr ""
#: ../../ref/configuration/master.rst:104
msgid ""
"Worker threads should not be put below 3 when using the peer system, but can"
" drop down to 1 worker otherwise."
msgstr ""
#: ../../ref/configuration/master.rst:114
msgid "``ret_port``"
msgstr ""
#: ../../ref/configuration/master.rst:116
#: ../../ref/configuration/master.rst:721
msgid "Default: ``4506``"
msgstr ""
#: ../../ref/configuration/master.rst:118
msgid ""
"The port used by the return server, this is the server used by Salt to "
"receive execution returns and command executions."
msgstr ""
#: ../../ref/configuration/master.rst:128
msgid "``pidfile``"
msgstr ""
#: ../../ref/configuration/master.rst:130
msgid "Default: ``/var/run/salt-master.pid``"
msgstr ""
#: ../../ref/configuration/master.rst:132
msgid "Specify the location of the master pidfile"
msgstr ""
#: ../../ref/configuration/master.rst:141
msgid "``root_dir``"
msgstr ""
#: ../../ref/configuration/master.rst:143
msgid "Default: :file:`/`"
msgstr ""
#: ../../ref/configuration/master.rst:145
msgid ""
"The system root directory to operate from, change this to make Salt run from"
" an alternative root"
msgstr ""
#: ../../ref/configuration/master.rst:155
msgid "``pki_dir``"
msgstr ""
#: ../../ref/configuration/master.rst:157
msgid "Default: :file:`/etc/salt/pki`"
msgstr ""
#: ../../ref/configuration/master.rst:159
msgid "The directory to store the pki authentication keys."
msgstr ""
#: ../../ref/configuration/master.rst:168
msgid "``cachedir``"
msgstr ""
#: ../../ref/configuration/master.rst:170
msgid "Default: :file:`/var/cache/salt`"
msgstr ""
#: ../../ref/configuration/master.rst:172
msgid ""
"The location used to store cache information, particularly the job "
"information for executed salt commands."
msgstr ""
#: ../../ref/configuration/master.rst:182
msgid "``keep_jobs``"
msgstr ""
#: ../../ref/configuration/master.rst:184
msgid "Default: ``24``"
msgstr ""
#: ../../ref/configuration/master.rst:186
msgid "Set the number of hours to keep old job information"
msgstr ""
#: ../../ref/configuration/master.rst:191
msgid "``job_cache``"
msgstr ""
#: ../../ref/configuration/master.rst:193
msgid "Default: ``True``"
msgstr ""
#: ../../ref/configuration/master.rst:195
msgid ""
"The master maintains a job cache, while this is a great addition it can be a"
" burden on the master for larger deployments (over 5000 minions). Disabling "
"the job cache will make previously executed jobs unavailable to the jobs "
"system and is not generally recommended. Normally it is wise to make sure "
"the master has access to a faster IO system or a tmpfs is mounted to the "
"jobs dir"
msgstr ""
#: ../../ref/configuration/master.rst:205
msgid "``ext_job_cache``"
msgstr ""
#: ../../ref/configuration/master.rst:207
msgid "Default: ''"
msgstr ""
#: ../../ref/configuration/master.rst:209
msgid ""
"Used to specify a default returner for all minions, when this option is set "
"the specified returner needs to be properly configured and the minions will "
"always default to sending returns to this returner. This will also disable "
"the local job cache on the master"
msgstr ""
#: ../../ref/configuration/master.rst:221
msgid "``minion_data_cache``"
msgstr ""
#: ../../ref/configuration/master.rst:223
msgid "Default: True"
msgstr ""
#: ../../ref/configuration/master.rst:225
msgid ""
"The minion data cache is a cache of information about the minions stored on "
"the master, this information is primarily the pillar and grains data. The "
"data is cached in the Master cachedir under the name of the minion and used "
"to pre determine what minions are expected to reply from executions."
msgstr ""
#: ../../ref/configuration/master.rst:237
msgid "``enforce_mine_cache``"
msgstr ""
#: ../../ref/configuration/master.rst:239
msgid "Default: False"
msgstr ""
#: ../../ref/configuration/master.rst:241
msgid ""
"By-default when disabling the minion_data_cache mine will stop working since"
" it is based on cached data, by enabling this option we explicitly enabling "
"only the cache for the mine system."
msgstr ""
#: ../../ref/configuration/master.rst:252
msgid "``sock_dir``"
msgstr ""
#: ../../ref/configuration/master.rst:254
msgid "Default:: :file:`/tmp/salt-unix`"
msgstr ""
#: ../../ref/configuration/master.rst:256
msgid ""
"Set the location to use for creating Unix sockets for master process "
"communication"
msgstr ""
#: ../../ref/configuration/master.rst:261
msgid "Master Security Settings"
msgstr ""
#: ../../ref/configuration/master.rst:266
msgid "``open_mode``"
msgstr ""
#: ../../ref/configuration/master.rst:268
#: ../../ref/configuration/master.rst:287
#: ../../ref/configuration/master.rst:384
#: ../../ref/configuration/master.rst:411
#: ../../ref/configuration/master.rst:428
#: ../../ref/configuration/master.rst:692
msgid "Default: ``False``"
msgstr ""
#: ../../ref/configuration/master.rst:270
msgid ""
"Open mode is a dangerous security feature. One problem encountered with pki "
"authentication systems is that keys can become \"mixed up\" and "
"authentication begins to fail. Open mode turns off authentication and tells "
"the master to accept all authentication. This will clean up the pki keys "
"received from the minions. Open mode should not be turned on for general "
"use. Open mode should only be used for a short period of time to clean up "
"pki keys. To turn on open mode set this value to ``True``."
msgstr ""
#: ../../ref/configuration/master.rst:285
msgid "``auto_accept``"
msgstr ""
#: ../../ref/configuration/master.rst:289
msgid ""
"Enable auto_accept. This setting will automatically accept all incoming "
"public keys from the minions"
msgstr ""
#: ../../ref/configuration/master.rst:299
msgid "``autosign_file``"
msgstr ""
#: ../../ref/configuration/master.rst:301
msgid "Default ``not defined``"
msgstr ""
#: ../../ref/configuration/master.rst:303
msgid ""
"If the autosign_file is specified incoming keys specified in the "
"autosign_file will be automatically accepted. Matches will be searched for "
"first by string comparison, then by globbing, then by full-string regex "
"matching. This is insecure!"
msgstr ""
#: ../../ref/configuration/master.rst:311
msgid "``client_acl``"
msgstr ""
#: ../../ref/configuration/master.rst:313
#: ../../ref/configuration/master.rst:330
#: ../../ref/configuration/master.rst:354
#: ../../ref/configuration/master.rst:771
#: ../../ref/configuration/master.rst:801
#: ../../ref/configuration/master.rst:822
#: ../../ref/configuration/master.rst:968
msgid "Default: ``{}``"
msgstr ""
#: ../../ref/configuration/master.rst:315
msgid ""
"Enable user accounts on the master to execute specific modules. These "
"modules can be expressed as regular expressions"
msgstr ""
#: ../../ref/configuration/master.rst:328
msgid "``client_acl_blacklist``"
msgstr ""
#: ../../ref/configuration/master.rst:332
msgid "Blacklist users or modules"
msgstr ""
#: ../../ref/configuration/master.rst:334
msgid ""
"This example would blacklist all non sudo users, including root from running"
" any commands. It would also blacklist any use of the \"cmd\" module."
msgstr ""
#: ../../ref/configuration/master.rst:338
msgid "This is completely disabled by default."
msgstr ""
#: ../../ref/configuration/master.rst:352
msgid "``external_auth``"
msgstr ""
#: ../../ref/configuration/master.rst:356
msgid ""
"The external auth system uses the Salt auth modules to authenticate and "
"validate users to access areas of the Salt system."
msgstr ""
#: ../../ref/configuration/master.rst:369
msgid "``token_expire``"
msgstr ""
#: ../../ref/configuration/master.rst:371
msgid "Default: ``43200``"
msgstr ""
#: ../../ref/configuration/master.rst:373
msgid ""
"Time (in seconds) for a newly generated token to live. Default: 12 hours"
msgstr ""
#: ../../ref/configuration/master.rst:382
msgid "``file_recv``"
msgstr ""
#: ../../ref/configuration/master.rst:386
msgid ""
"Allow minions to push files to the master. This is disabled by default, for "
"security purposes."
msgstr ""
#: ../../ref/configuration/master.rst:395
msgid "Master Module Management"
msgstr ""
#: ../../ref/configuration/master.rst:400
msgid "``runner_dirs``"
msgstr ""
#: ../../ref/configuration/master.rst:402
msgid "Default: ``[]``"
msgstr ""
#: ../../ref/configuration/master.rst:404
msgid "Set additional directories to search for runner modules"
msgstr ""
#: ../../ref/configuration/master.rst:409
msgid "``cython_enable``"
msgstr ""
#: ../../ref/configuration/master.rst:413
msgid ""
"Set to true to enable cython modules (.pyx files) to be compiled on the fly "
"on the Salt master"
msgstr ""
#: ../../ref/configuration/master.rst:421
msgid "Master State System Settings"
msgstr ""
#: ../../ref/configuration/master.rst:426
msgid "``state_verbose``"
msgstr ""
#: ../../ref/configuration/master.rst:430
msgid ""
"state_verbose allows for the data returned from the minion to be more "
"verbose. Normally only states that fail or states that have changes are "
"returned, but setting state_verbose to ``True`` will return all states that "
"were checked"
msgstr ""
#: ../../ref/configuration/master.rst:442
msgid "``state_output``"
msgstr ""
#: ../../ref/configuration/master.rst:444
msgid "Default: ``full``"
msgstr ""
#: ../../ref/configuration/master.rst:446
msgid ""
"The state_output setting changes if the output is the full multi line output"
" for each changed state if set to 'full', but if set to 'terse' the output "
"will be shortened to a single line. If set to 'mixed', the output will be "
"terse unless a state failed, in which case that output will be full. If set "
"to 'changes', the output will be full unless the state didn't change."
msgstr ""
#: ../../ref/configuration/master.rst:459
msgid "``state_top``"
msgstr ""
#: ../../ref/configuration/master.rst:461
msgid "Default: ``top.sls``"
msgstr ""
#: ../../ref/configuration/master.rst:463
msgid ""
"The state system uses a \"top\" file to tell the minions what environment to"
" use and what modules to use. The state_top file is defined relative to the "
"root of the base environment"
msgstr ""
#: ../../ref/configuration/master.rst:474
msgid "``external_nodes``"
msgstr ""
#: ../../ref/configuration/master.rst:476
msgid "Default: None"
msgstr ""
#: ../../ref/configuration/master.rst:478
msgid ""
"The external_nodes option allows Salt to gather data that would normally be "
"placed in a top file from and external node controller. The external_nodes "
"option is the executable that will return the ENC data. Remember that Salt "
"will look for external nodes AND top files and combine the results if both "
"are enabled and available!"
msgstr ""
#: ../../ref/configuration/master.rst:491
msgid "``renderer``"
msgstr ""
#: ../../ref/configuration/master.rst:493
msgid "Default: ``yaml_jinja``"
msgstr ""
#: ../../ref/configuration/master.rst:495
msgid "The renderer to use on the minions to render the state data"
msgstr ""
#: ../../ref/configuration/master.rst:504
msgid "``failhard``"
msgstr ""
#: ../../ref/configuration/master.rst:506
#: ../../ref/configuration/master.rst:520
msgid "Default:: ``False``"
msgstr ""
#: ../../ref/configuration/master.rst:508
msgid ""
"Set the global failhard flag, this informs all states to stop running states"
" at the moment a single state fails"
msgstr ""
#: ../../ref/configuration/master.rst:518
msgid "``test``"
msgstr ""
#: ../../ref/configuration/master.rst:522
msgid ""
"Set all state calls to only test if they are going to actually make changes "
"or just post what changes are going to be made"
msgstr ""
#: ../../ref/configuration/master.rst:530
msgid "Master File Server Settings"
msgstr ""
#: ../../ref/configuration/master.rst:535
msgid "``fileserver_backend``"
msgstr ""
#: ../../ref/configuration/master.rst:537
#: ../../ref/configuration/master.rst:564
#: ../../ref/configuration/master.rst:631
msgid "Default:"
msgstr ""
#: ../../ref/configuration/master.rst:544
msgid ""
"Salt supports a modular fileserver backend system, this system allows the "
"salt master to link directly to third party systems to gather and manage the"
" files available to minions. Multiple backends can be configured and will be"
" searched for the requested file in the order in which they are defined "
"here. The default setting only enables the standard backend ``roots``, which"
" is configured using the :conf_master:`file_roots` option."
msgstr ""
#: ../../ref/configuration/master.rst:551
msgid "Example:"
msgstr ""
#: ../../ref/configuration/master.rst:562
msgid "``file_roots``"
msgstr ""
#: ../../ref/configuration/master.rst:571
msgid ""
"Salt runs a lightweight file server written in ZeroMQ to deliver files to "
"minions. This file server is built into the master daemon and does not "
"require a dedicated port."
msgstr ""
#: ../../ref/configuration/master.rst:575
msgid ""
"The file server works on environments passed to the master. Each environment"
" can have multiple root directories. The subdirectories in the multiple file"
" roots cannot match, otherwise the downloaded files will not be able to be "
"reliably ensured. A base environment is required to house the top file. "
"Example:"
msgstr ""
#: ../../ref/configuration/master.rst:596
msgid "``hash_type``"
msgstr ""
#: ../../ref/configuration/master.rst:598
msgid "Default: ``md5``"
msgstr ""
#: ../../ref/configuration/master.rst:600
msgid ""
"The hash_type is the hash to use when discovering the hash of a file on the "
"master server. The default is md5, but sha1, sha224, sha256, sha384 and "
"sha512 are also supported."
msgstr ""
#: ../../ref/configuration/master.rst:611
msgid "``file_buffer_size``"
msgstr ""
#: ../../ref/configuration/master.rst:613
msgid "Default: ``1048576``"
msgstr ""
#: ../../ref/configuration/master.rst:615
msgid "The buffer size in the file server in bytes"
msgstr ""
#: ../../ref/configuration/master.rst:624
msgid "Pillar Configuration"
msgstr ""
#: ../../ref/configuration/master.rst:629
msgid "``pillar_roots``"
msgstr ""
#: ../../ref/configuration/master.rst:638
msgid ""
"Set the environments and directories used to hold pillar sls data. This "
"configuration is the same as :conf_master:`file_roots`:"
msgstr ""
#: ../../ref/configuration/master.rst:654
msgid "``ext_pillar``"
msgstr ""
#: ../../ref/configuration/master.rst:656
msgid ""
"The ext_pillar option allows for any number of external pillar interfaces to"
" be called when populating pillar data. The configuration is based on "
"ext_pillar functions. The available ext_pillar functions can be found "
"herein:"
msgstr ""
#: ../../ref/configuration/master.rst:660
msgid ":blob:`salt/pillar`"
msgstr ""
#: ../../ref/configuration/master.rst:662
msgid "By default, the ext_pillar interface is not configured to run."
msgstr ""
#: ../../ref/configuration/master.rst:664
msgid "Default:: ``None``"
msgstr ""
#: ../../ref/configuration/master.rst:674
msgid "There are additional details at :ref:`salt-pillars`"
msgstr ""
#: ../../ref/configuration/master.rst:677
msgid "Syndic Server Settings"
msgstr ""
#: ../../ref/configuration/master.rst:679
msgid ""
"A Salt syndic is a Salt master used to pass commands from a higher Salt "
"master to minions below the syndic. Using the syndic is simple. If this is a"
" master that will have syndic servers(s) below it, set the \"order_masters\""
" setting to True. If this is a master that will be running a syndic daemon "
"for passthrough the \"syndic_master\" setting needs to be set to the "
"location of the master server"
msgstr ""
#: ../../ref/configuration/master.rst:685
msgid ""
"Do not not forget that in other word it means that it shares with the local "
"minion it's ID and PKI_DIR."
msgstr ""
#: ../../ref/configuration/master.rst:690
msgid "``order_masters``"
msgstr ""
#: ../../ref/configuration/master.rst:694
msgid ""
"Extra data needs to be sent with publications if the master is controlling a"
" lower level master via a syndic minion. If this is the case the "
"order_masters value must be set to True"
msgstr ""
#: ../../ref/configuration/master.rst:705
msgid "``syndic_master``"
msgstr ""
#: ../../ref/configuration/master.rst:707
msgid "Default: ``None``"
msgstr ""
#: ../../ref/configuration/master.rst:709
msgid ""
"If this master will be running a salt-syndic to connect to a higher level "
"master, specify the higher level master with this configuration value"
msgstr ""
#: ../../ref/configuration/master.rst:719
msgid "``syndic_master_port``"
msgstr ""
#: ../../ref/configuration/master.rst:723
msgid ""
"If this master will be running a salt-syndic to connect to a higher level "
"master, specify the higher level master port with this configuration value"
msgstr ""
#: ../../ref/configuration/master.rst:733
msgid "``syndic_log_file``"
msgstr ""
#: ../../ref/configuration/master.rst:735
msgid "Default: ``syndic.log``"
msgstr ""
#: ../../ref/configuration/master.rst:737
msgid ""
"If this master will be running a salt-syndic to connect to a higher level "
"master, specify the log_file of the syndic daemon."
msgstr ""
#: ../../ref/configuration/master.rst:747
msgid "``syndic_pidfile``"
msgstr ""
#: ../../ref/configuration/master.rst:749
msgid "Default: ``salt-syndic.pid``"
msgstr ""
#: ../../ref/configuration/master.rst:751
msgid ""
"If this master will be running a salt-syndic to connect to a higher level "
"master, specify the pidfile of the syndic daemon."
msgstr ""
#: ../../ref/configuration/master.rst:759
msgid "Peer Publish Settings"
msgstr ""
#: ../../ref/configuration/master.rst:761
msgid ""
"Salt minions can send commands to other minions, but only if the minion is "
"allowed to. By default \"Peer Publication\" is disabled, and when enabled it"
" is enabled for specific minions and specific commands. This allows secure "
"compartmentalization of commands based on individual minions."
msgstr ""
#: ../../ref/configuration/master.rst:769
msgid "``peer``"
msgstr ""
#: ../../ref/configuration/master.rst:773
msgid ""
"The configuration uses regular expressions to match minions and then a list "
"of regular expressions to match functions. The following will allow the "
"minion authenticated as foo.example.com to execute functions from the test "
"and pkg modules"
msgstr ""
#: ../../ref/configuration/master.rst:785
msgid "This will allow all minions to execute all commands:"
msgstr ""
#: ../../ref/configuration/master.rst:793
msgid ""
"This is not recommended, since it would allow anyone who gets root on any "
"single minion to instantly have root on all of the minions!"
msgstr ""
#: ../../ref/configuration/master.rst:799
msgid "``peer_run``"
msgstr ""
#: ../../ref/configuration/master.rst:803
msgid ""
"The peer_run option is used to open up runners on the master to access from "
"the minions. The peer_run configuration matches the format of the peer "
"configuration."
msgstr ""
#: ../../ref/configuration/master.rst:807
msgid ""
"The following example would allow foo.example.com to execute the manage.up "
"runner:"
msgstr ""
#: ../../ref/configuration/master.rst:818
msgid "Node Groups"
msgstr ""
#: ../../ref/configuration/master.rst:824
msgid ""
"Node groups allow for logical groupings of minion nodes. A group consists of"
" a group name and a compound target."
msgstr ""
#: ../../ref/configuration/master.rst:838
msgid "Master Logging Settings"
msgstr ""
#: ../../ref/configuration/master.rst:843
msgid "``log_file``"
msgstr ""
#: ../../ref/configuration/master.rst:845
msgid "Default: ``/var/log/salt/master``"
msgstr ""
#: ../../ref/configuration/master.rst:847
msgid ""
"The master log can be sent to a regular file, local path name, or network "
"location. See also :conf-log:`log_file`."
msgstr ""
#: ../../ref/configuration/master.rst:850
msgid "Examples:"
msgstr ""
#: ../../ref/configuration/master.rst:869
msgid "``log_level``"
msgstr ""
#: ../../ref/configuration/master.rst:871
#: ../../ref/configuration/master.rst:887
msgid "Default: ``warning``"
msgstr ""
#: ../../ref/configuration/master.rst:873
msgid ""
"The level of messages to send to the console. See also :conf-"
"log:`log_level`."
msgstr ""
#: ../../ref/configuration/master.rst:885
msgid "``log_level_logfile``"
msgstr ""
#: ../../ref/configuration/master.rst:889
msgid ""
"The level of messages to send to the log file. See also :conf-"
"log:`log_level_logfile`."
msgstr ""
#: ../../ref/configuration/master.rst:901
msgid "``log_datefmt``"
msgstr ""
#: ../../ref/configuration/master.rst:903
msgid "Default: ``%H:%M:%S``"
msgstr ""
#: ../../ref/configuration/master.rst:905
msgid ""
"The date and time format used in console log messages. See also :conf-"
"log:`log_datefmt`."
msgstr ""
#: ../../ref/configuration/master.rst:918
msgid "``log_datefmt_logfile``"
msgstr ""
#: ../../ref/configuration/master.rst:920
msgid "Default: ``%Y-%m-%d %H:%M:%S``"
msgstr ""
#: ../../ref/configuration/master.rst:922
msgid ""
"The date and time format used in log file messages. See also :conf-"
"log:`log_datefmt_logfile`."
msgstr ""
#: ../../ref/configuration/master.rst:934
msgid "``log_fmt_console``"
msgstr ""
#: ../../ref/configuration/master.rst:936
msgid "Default: ``[%(levelname)-8s] %(message)s``"
msgstr ""
#: ../../ref/configuration/master.rst:938
msgid ""
"The format of the console logging messages. See also :conf-"
"log:`log_fmt_console`."
msgstr ""
#: ../../ref/configuration/master.rst:950
msgid "``log_fmt_logfile``"
msgstr ""
#: ../../ref/configuration/master.rst:952
msgid ""
"Default: ``%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] "
"%(message)s``"
msgstr ""
#: ../../ref/configuration/master.rst:954
msgid ""
"The format of the log file logging messages. See also :conf-"
"log:`log_fmt_logfile`."
msgstr ""
#: ../../ref/configuration/master.rst:966
msgid "``log_granular_levels``"
msgstr ""
#: ../../ref/configuration/master.rst:970
msgid ""
"This can be used to control logging levels more specifically. See also "
":conf-log:`log_granular_levels`."
msgstr ""
#: ../../ref/configuration/master.rst:976
msgid "Include Configuration"
msgstr ""
#: ../../ref/configuration/master.rst:981
msgid "``default_include``"
msgstr ""
#: ../../ref/configuration/master.rst:983
msgid "Default: ``master.d/*.conf``"
msgstr ""
#: ../../ref/configuration/master.rst:985
msgid ""
"The master can include configuration from other files. Per default the "
"master will automatically include all config files from ``master.d/*.conf`` "
"where ``master.d`` is relative to the directory of the master configuration "
"file."
msgstr ""
#: ../../ref/configuration/master.rst:994
msgid "``include``"
msgstr ""
#: ../../ref/configuration/master.rst:996
msgid "Default: ``not defined``"
msgstr ""
#: ../../ref/configuration/master.rst:998
msgid ""
"The master can include configuration from other files. To enable this, pass "
"a list of paths to this option. The paths can be either relative or "
"absolute; if relative, they are considered to be relative to the directory "
"the main minion configuration file lives in. Paths can make use of shell-"
"style globbing. If no files are matched by a path passed to this option then"
" the master will log a warning message."
msgstr ""

View File

@ -1,773 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/configuration/minion.rst:8
msgid "Configuring the Salt Minion"
msgstr ""
#: ../../ref/configuration/minion.rst:10
msgid ""
"The Salt system is amazingly simple and easy to configure, the two "
"components of the Salt system each have a respective configuration file. The"
" :command:`salt-master` is configured via the master configuration file, and"
" the :command:`salt-minion` is configured via the minion configuration file."
msgstr ""
#: ../../ref/configuration/minion.rst:16
msgid ""
":ref:`example minion configuration file <configuration-examples-minion>`"
msgstr ""
#: ../../ref/configuration/minion.rst:18
msgid ""
"The Salt Minion configuration is very simple, typically the only value that "
"needs to be set is the master value so the minion can find its master."
msgstr ""
#: ../../ref/configuration/minion.rst:24
msgid "Minion Primary Configuration"
msgstr ""
#: ../../ref/configuration/minion.rst:29
msgid "``master``"
msgstr ""
#: ../../ref/configuration/minion.rst:31
msgid "Default: ``salt``"
msgstr ""
#: ../../ref/configuration/minion.rst:33
msgid "The hostname or ipv4 of the master."
msgstr ""
#: ../../ref/configuration/minion.rst:42
msgid "``master_port``"
msgstr ""
#: ../../ref/configuration/minion.rst:44
msgid "Default: ``4506``"
msgstr ""
#: ../../ref/configuration/minion.rst:46
msgid ""
"The port of the master ret server, this needs to coincide with the ret_port "
"option on the Salt master."
msgstr ""
#: ../../ref/configuration/minion.rst:56
msgid "``user``"
msgstr ""
#: ../../ref/configuration/minion.rst:58
msgid "Default: ``root``"
msgstr ""
#: ../../ref/configuration/minion.rst:60
msgid "The user to run the Salt processes"
msgstr ""
#: ../../ref/configuration/minion.rst:69
msgid "``pidfile``"
msgstr ""
#: ../../ref/configuration/minion.rst:71
msgid "Default: ``/var/run/salt-minion.pid``"
msgstr ""
#: ../../ref/configuration/minion.rst:73
msgid "The location of the daemon's process ID file"
msgstr ""
#: ../../ref/configuration/minion.rst:82
msgid "``root_dir``"
msgstr ""
#: ../../ref/configuration/minion.rst:84
msgid "Default: ``/``"
msgstr ""
#: ../../ref/configuration/minion.rst:86
msgid ""
"This directory is prepended to the following options: "
":conf_minion:`pki_dir`, :conf_minion:`cachedir`, :conf_minion:`log_file`, "
":conf_minion:`sock_dir`, and :conf_minion:`pidfile`."
msgstr ""
#: ../../ref/configuration/minion.rst:97
msgid "``pki_dir``"
msgstr ""
#: ../../ref/configuration/minion.rst:99
msgid "Default: ``/etc/salt/pki``"
msgstr ""
#: ../../ref/configuration/minion.rst:101
msgid "The directory used to store the minion's public and private keys."
msgstr ""
#: ../../ref/configuration/minion.rst:110
msgid "``id``"
msgstr ""
#: ../../ref/configuration/minion.rst:112
msgid "Default: the system's hostname"
msgstr ""
#: ../../ref/configuration/minion.rst:114
msgid ":ref:`Salt Walkthrough <minion-id-generation>`"
msgstr ""
#: ../../ref/configuration/minion.rst:116
msgid ""
"The :strong:`Setting up a Salt Minion` section contains detailed information"
" on how the hostname is determined."
msgstr ""
#: ../../ref/configuration/minion.rst:119
msgid ""
"Explicitly declare the id for this minion to use. Since Salt uses detached "
"ids it is possible to run multiple minions on the same machine but with "
"different ids. This can be useful for Salt compute clusters."
msgstr ""
#: ../../ref/configuration/minion.rst:130
msgid "``append_domain``"
msgstr ""
#: ../../ref/configuration/minion.rst:132
#: ../../ref/configuration/minion.rst:245
#: ../../ref/configuration/minion.rst:520
msgid "Default: ``None``"
msgstr ""
#: ../../ref/configuration/minion.rst:134
msgid ""
"Append a domain to a hostname in the event that it does not exist. This is "
"useful for systems where ``socket.getfqdn()`` does not actually result in a "
"FQDN (for instance, Solaris)."
msgstr ""
#: ../../ref/configuration/minion.rst:145
msgid "``cachedir``"
msgstr ""
#: ../../ref/configuration/minion.rst:147
msgid "Default: ``/var/cache/salt``"
msgstr ""
#: ../../ref/configuration/minion.rst:149
msgid "The location for minion cache data."
msgstr ""
#: ../../ref/configuration/minion.rst:158
msgid "``verify_env``"
msgstr ""
#: ../../ref/configuration/minion.rst:160
#: ../../ref/configuration/minion.rst:260
#: ../../ref/configuration/minion.rst:492
#: ../../ref/configuration/minion.rst:504
#: ../../ref/configuration/minion.rst:645
msgid "Default: ``True``"
msgstr ""
#: ../../ref/configuration/minion.rst:162
msgid "Verify and set permissions on configuration directories at startup."
msgstr ""
#: ../../ref/configuration/minion.rst:171
msgid "``cache_jobs``"
msgstr ""
#: ../../ref/configuration/minion.rst:173
#: ../../ref/configuration/minion.rst:411
#: ../../ref/configuration/minion.rst:461
#: ../../ref/configuration/minion.rst:628
msgid "Default: ``False``"
msgstr ""
#: ../../ref/configuration/minion.rst:175
msgid ""
"The minion can locally cache the return data from jobs sent to it, this can "
"be a good way to keep track of the minion side of the jobs the minion has "
"executed. By default this feature is disabled, to enable set cache_jobs to "
"``True``."
msgstr ""
#: ../../ref/configuration/minion.rst:187
msgid "``sock_dir``"
msgstr ""
#: ../../ref/configuration/minion.rst:189
msgid "Default: ``/var/run/salt/minion``"
msgstr ""
#: ../../ref/configuration/minion.rst:191
msgid "The directory where Unix sockets will be kept."
msgstr ""
#: ../../ref/configuration/minion.rst:200
msgid "``backup_mode``"
msgstr ""
#: ../../ref/configuration/minion.rst:202
#: ../../ref/configuration/minion.rst:354
#: ../../ref/configuration/minion.rst:368
#: ../../ref/configuration/minion.rst:382
#: ../../ref/configuration/minion.rst:397
msgid "Default: ``[]``"
msgstr ""
#: ../../ref/configuration/minion.rst:204
msgid "Backup files replaced by file.managed and file.recurse under cachedir."
msgstr ""
#: ../../ref/configuration/minion.rst:213
msgid "``acceptance_wait_time``"
msgstr ""
#: ../../ref/configuration/minion.rst:215
msgid "Default: ``10``"
msgstr ""
#: ../../ref/configuration/minion.rst:217
msgid ""
"The number of seconds to wait until attempting to re-authenticate with the "
"master."
msgstr ""
#: ../../ref/configuration/minion.rst:227
msgid "``random_reauth_delay``"
msgstr ""
#: ../../ref/configuration/minion.rst:229
msgid ""
"When the master key changes, the minion will try to re-auth itself to "
"receive the new master key. In larger environments this can cause a syn-"
"flood on the master because all minions try to re-auth immediately. To "
"prevent this and have a minion wait for a random amount of time, use this "
"optional parameter. The wait-time will be a random number of seconds between"
" 0 and the defined value."
msgstr ""
#: ../../ref/configuration/minion.rst:243
msgid "``acceptance_wait_time_max``"
msgstr ""
#: ../../ref/configuration/minion.rst:247
msgid ""
"The maximum number of seconds to wait until attempting to re\\-authenticate "
"with the master. If set, the wait will increase by acceptance_wait_time "
"seconds each iteration."
msgstr ""
#: ../../ref/configuration/minion.rst:258
msgid "``dns_check``"
msgstr ""
#: ../../ref/configuration/minion.rst:262
msgid ""
"When healing, a dns_check is run. This is to make sure that the originally "
"resolved dns has not changed. If this is something that does not happen in "
"your environment, set this value to ``False``."
msgstr ""
#: ../../ref/configuration/minion.rst:273
msgid "``ipc_mode``"
msgstr ""
#: ../../ref/configuration/minion.rst:275
msgid "Default: ``ipc``"
msgstr ""
#: ../../ref/configuration/minion.rst:277
msgid ""
"Windows platforms lack POSIX IPC and must rely on slower TCP based inter- "
"process communications. Set ipc_mode to ``tcp`` on such systems."
msgstr ""
#: ../../ref/configuration/minion.rst:287
msgid "``tcp_pub_port``"
msgstr ""
#: ../../ref/configuration/minion.rst:289
msgid "Default: ``4510``"
msgstr ""
#: ../../ref/configuration/minion.rst:291
msgid "Publish port used when :conf_minion:`ipc_mode` is set to ``tcp``."
msgstr ""
#: ../../ref/configuration/minion.rst:300
msgid "``tcp_pull_port``"
msgstr ""
#: ../../ref/configuration/minion.rst:302
msgid "Default: ``4511``"
msgstr ""
#: ../../ref/configuration/minion.rst:304
msgid "Pull port used when :conf_minion:`ipc_mode` is set to ``tcp``."
msgstr ""
#: ../../ref/configuration/minion.rst:313
msgid "Minion Module Management"
msgstr ""
#: ../../ref/configuration/minion.rst:318
msgid "``disable_modules``"
msgstr ""
#: ../../ref/configuration/minion.rst:320
msgid "Default: ``[]`` (all modules are enabled by default)"
msgstr ""
#: ../../ref/configuration/minion.rst:322
msgid ""
"The event may occur in which the administrator desires that a minion should "
"not be able to execute a certain module. The sys module is built into the "
"minion and cannot be disabled."
msgstr ""
#: ../../ref/configuration/minion.rst:326
msgid ""
"This setting can also tune the minion, as all modules are loaded into ram "
"disabling modules will lover the minion's ram footprint."
msgstr ""
#: ../../ref/configuration/minion.rst:338
msgid "``disable_returners``"
msgstr ""
#: ../../ref/configuration/minion.rst:340
msgid "Default: ``[]`` (all returners are enabled by default)"
msgstr ""
#: ../../ref/configuration/minion.rst:342
msgid "If certain returners should be disabled, this is the place"
msgstr ""
#: ../../ref/configuration/minion.rst:352
msgid "``module_dirs``"
msgstr ""
#: ../../ref/configuration/minion.rst:356
msgid "A list of extra directories to search for Salt modules"
msgstr ""
#: ../../ref/configuration/minion.rst:366
msgid "``returner_dirs``"
msgstr ""
#: ../../ref/configuration/minion.rst:370
msgid "A list of extra directories to search for Salt returners"
msgstr ""
#: ../../ref/configuration/minion.rst:380
msgid "``states_dirs``"
msgstr ""
#: ../../ref/configuration/minion.rst:384
msgid "A list of extra directories to search for Salt states"
msgstr ""
#: ../../ref/configuration/minion.rst:395
msgid "``render_dirs``"
msgstr ""
#: ../../ref/configuration/minion.rst:399
msgid "A list of extra directories to search for Salt renderers"
msgstr ""
#: ../../ref/configuration/minion.rst:409
msgid "``cython_enable``"
msgstr ""
#: ../../ref/configuration/minion.rst:413
msgid ""
"Set this value to true to enable auto-loading and compiling of ``.pyx`` "
"modules, This setting requires that ``gcc`` and ``cython`` are installed on "
"the minion"
msgstr ""
#: ../../ref/configuration/minion.rst:423
msgid "``providers``"
msgstr ""
#: ../../ref/configuration/minion.rst:425
msgid "Default: (empty)"
msgstr ""
#: ../../ref/configuration/minion.rst:427
msgid ""
"A module provider can be statically overwritten or extended for the minion "
"via the ``providers`` option. This can be done :doc:`on an individual basis "
"in an SLS file <../states/providers>`, or globally here in the minion "
"config, like below."
msgstr ""
#: ../../ref/configuration/minion.rst:441
msgid "State Management Settings"
msgstr ""
#: ../../ref/configuration/minion.rst:446
msgid "``renderer``"
msgstr ""
#: ../../ref/configuration/minion.rst:448
msgid "Default: ``yaml_jinja``"
msgstr ""
#: ../../ref/configuration/minion.rst:450
msgid "The default renderer used for local state executions"
msgstr ""
#: ../../ref/configuration/minion.rst:459
msgid "``state_verbose``"
msgstr ""
#: ../../ref/configuration/minion.rst:463
msgid ""
"state_verbose allows for the data returned from the minion to be more "
"verbose. Normally only states that fail or states that have changes are "
"returned, but setting state_verbose to ``True`` will return all states that "
"were checked"
msgstr ""
#: ../../ref/configuration/minion.rst:475
msgid "``state_output``"
msgstr ""
#: ../../ref/configuration/minion.rst:477
msgid "Default: ``full``"
msgstr ""
#: ../../ref/configuration/minion.rst:479
msgid ""
"The state_output setting changes if the output is the full multi line output"
" for each changed state if set to 'full', but if set to 'terse' the output "
"will be shortened to a single line."
msgstr ""
#: ../../ref/configuration/minion.rst:490
msgid "``autoload_dynamic_modules``"
msgstr ""
#: ../../ref/configuration/minion.rst:494
msgid ""
"autoload_dynamic_modules Turns on automatic loading of modules found in the "
"environments on the master. This is turned on by default, to turn of auto-"
"loading modules when states run set this value to ``False``"
msgstr ""
#: ../../ref/configuration/minion.rst:506
msgid ""
"clean_dynamic_modules keeps the dynamic modules on the minion in sync with "
"the dynamic modules on the master, this means that if a dynamic module is "
"not on the master it will be deleted from the minion. By default this is "
"enabled and can be disabled by changing this value to ``False``"
msgstr ""
#: ../../ref/configuration/minion.rst:518
msgid "``environment``"
msgstr ""
#: ../../ref/configuration/minion.rst:522
msgid ""
"Normally the minion is not isolated to any single environment on the master "
"when running states, but the environment can be isolated on the minion side "
"by statically setting it. Remember that the recommended way to manage "
"environments is to isolate via the top file."
msgstr ""
#: ../../ref/configuration/minion.rst:534
msgid "File Directory Settings"
msgstr ""
#: ../../ref/configuration/minion.rst:539
msgid "``file_client``"
msgstr ""
#: ../../ref/configuration/minion.rst:541
msgid "Default: ``remote``"
msgstr ""
#: ../../ref/configuration/minion.rst:543
msgid ""
"The client defaults to looking on the master server for files, but can be "
"directed to look on the minion by setting this parameter to ``local``."
msgstr ""
#: ../../ref/configuration/minion.rst:553
msgid "``file_roots``"
msgstr ""
#: ../../ref/configuration/minion.rst:555
#: ../../ref/configuration/minion.rst:598
msgid "Default:"
msgstr ""
#: ../../ref/configuration/minion.rst:562
msgid ""
"When using a local :conf_minion:`file_client`, this parameter is used to "
"setup the fileserver's environments. This parameter operates identically to "
"the :conf_master:`master config parameter of the same name <file_roots>`."
msgstr ""
#: ../../ref/configuration/minion.rst:581
msgid "``hash_type``"
msgstr ""
#: ../../ref/configuration/minion.rst:583
msgid "Default: ``md5``"
msgstr ""
#: ../../ref/configuration/minion.rst:585
msgid ""
"The hash_type is the hash to use when discovering the hash of a file on the "
"local fileserver. The default is md5, but sha1, sha224, sha256, sha384 and "
"sha512 are also supported."
msgstr ""
#: ../../ref/configuration/minion.rst:596
msgid "``pillar_roots``"
msgstr ""
#: ../../ref/configuration/minion.rst:605
msgid ""
"When using a local :conf_minion:`file_client`, this parameter is used to "
"setup the pillar environments."
msgstr ""
#: ../../ref/configuration/minion.rst:621
msgid "Security Settings"
msgstr ""
#: ../../ref/configuration/minion.rst:626
msgid "``open_mode``"
msgstr ""
#: ../../ref/configuration/minion.rst:630
msgid ""
"Open mode can be used to clean out the PKI key received from the Salt "
"master, turn on open mode, restart the minion, then turn off open mode and "
"restart the minion to clean the keys."
msgstr ""
#: ../../ref/configuration/minion.rst:641
msgid "Thread Settings"
msgstr ""
#: ../../ref/configuration/minion.rst:647
msgid ""
"Disable multiprocessing support by default when a minion receives a "
"publication a new process is spawned and the command is executed therein."
msgstr ""
#: ../../ref/configuration/minion.rst:660
msgid "Minion Logging Settings"
msgstr ""
#: ../../ref/configuration/minion.rst:665
msgid "``log_file``"
msgstr ""
#: ../../ref/configuration/minion.rst:667
msgid "Default: ``/var/log/salt/minion``"
msgstr ""
#: ../../ref/configuration/minion.rst:669
msgid ""
"The minion log can be sent to a regular file, local path name, or network "
"location. See also :conf-log:`log_file`."
msgstr ""
#: ../../ref/configuration/minion.rst:672
msgid "Examples:"
msgstr ""
#: ../../ref/configuration/minion.rst:691
msgid "``log_level``"
msgstr ""
#: ../../ref/configuration/minion.rst:693
#: ../../ref/configuration/minion.rst:709
msgid "Default: ``warning``"
msgstr ""
#: ../../ref/configuration/minion.rst:695
msgid ""
"The level of messages to send to the console. See also :conf-"
"log:`log_level`."
msgstr ""
#: ../../ref/configuration/minion.rst:707
msgid "``log_level_logfile``"
msgstr ""
#: ../../ref/configuration/minion.rst:711
msgid ""
"The level of messages to send to the log file. See also :conf-"
"log:`log_level_logfile`."
msgstr ""
#: ../../ref/configuration/minion.rst:723
msgid "``log_datefmt``"
msgstr ""
#: ../../ref/configuration/minion.rst:725
msgid "Default: ``%H:%M:%S``"
msgstr ""
#: ../../ref/configuration/minion.rst:727
msgid ""
"The date and time format used in console log messages. See also :conf-"
"log:`log_datefmt`."
msgstr ""
#: ../../ref/configuration/minion.rst:740
msgid "``log_datefmt_logfile``"
msgstr ""
#: ../../ref/configuration/minion.rst:742
msgid "Default: ``%Y-%m-%d %H:%M:%S``"
msgstr ""
#: ../../ref/configuration/minion.rst:744
msgid ""
"The date and time format used in log file messages. See also :conf-"
"log:`log_datefmt_logfile`."
msgstr ""
#: ../../ref/configuration/minion.rst:756
msgid "``log_fmt_console``"
msgstr ""
#: ../../ref/configuration/minion.rst:758
msgid "Default: ``[%(levelname)-8s] %(message)s``"
msgstr ""
#: ../../ref/configuration/minion.rst:760
msgid ""
"The format of the console logging messages. See also :conf-"
"log:`log_fmt_console`."
msgstr ""
#: ../../ref/configuration/minion.rst:772
msgid "``log_fmt_logfile``"
msgstr ""
#: ../../ref/configuration/minion.rst:774
msgid ""
"Default: ``%(asctime)s,%(msecs)03.0f [%(name)-17s][%(levelname)-8s] "
"%(message)s``"
msgstr ""
#: ../../ref/configuration/minion.rst:776
msgid ""
"The format of the log file logging messages. See also :conf-"
"log:`log_fmt_logfile`."
msgstr ""
#: ../../ref/configuration/minion.rst:788
msgid "``log_granular_levels``"
msgstr ""
#: ../../ref/configuration/minion.rst:790
msgid "Default: ``{}``"
msgstr ""
#: ../../ref/configuration/minion.rst:792
msgid ""
"This can be used to control logging levels more specifically. See also "
":conf-log:`log_granular_levels`."
msgstr ""
#: ../../ref/configuration/minion.rst:798
msgid "Include Configuration"
msgstr ""
#: ../../ref/configuration/minion.rst:803
msgid "``default_include``"
msgstr ""
#: ../../ref/configuration/minion.rst:805
msgid "Default: ``minion.d/*.conf``"
msgstr ""
#: ../../ref/configuration/minion.rst:807
msgid ""
"The minion can include configuration from other files. Per default the "
"minion will automatically include all config files from `minion.d/*.conf` "
"where minion.d is relative to the directory of the minion configuration "
"file."
msgstr ""
#: ../../ref/configuration/minion.rst:813
msgid "``include``"
msgstr ""
#: ../../ref/configuration/minion.rst:815
msgid "Default: ``not defined``"
msgstr ""
#: ../../ref/configuration/minion.rst:817
msgid ""
"The minion can include configuration from other files. To enable this, pass "
"a list of paths to this option. The paths can be either relative or "
"absolute; if relative, they are considered to be relative to the directory "
"the main minion configuration file lives in. Paths can make use of shell-"
"style globbing. If no files are matched by a path passed to this option then"
" the minion will log a warning message."
msgstr ""
#: ../../ref/configuration/minion.rst:842
msgid "Frozen Build Update Settings"
msgstr ""
#: ../../ref/configuration/minion.rst:844
msgid ""
"These options control how :py:func:`salt.modules.saltutil.update` works with"
" esky frozen apps. For more information look at "
"`<https://github.com/cloudmatrix/esky/>`_."
msgstr ""
#: ../../ref/configuration/minion.rst:850
msgid "``update_url``"
msgstr ""
#: ../../ref/configuration/minion.rst:852
msgid "Default: ``False`` (Update feature is disabled)"
msgstr ""
#: ../../ref/configuration/minion.rst:854
msgid ""
"The url to use when looking for application updates. Esky depends on "
"directory listings to search for new versions. A webserver running on your "
"Master is a good starting point for most setups."
msgstr ""
#: ../../ref/configuration/minion.rst:865
msgid "``update_restart_services``"
msgstr ""
#: ../../ref/configuration/minion.rst:867
msgid "Default: ``[]`` (service restarting on update is disabled)"
msgstr ""
#: ../../ref/configuration/minion.rst:869
msgid ""
"A list of services to restart when the minion software is updated. This "
"would typically just be a list containing the minion's service name, but you"
" may have other services that need to go with it."
msgstr ""

View File

@ -1,48 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/file_server/all/index.rst:8
msgid "Full list of builtin fileserver modules"
msgstr ""
#: ../../<autosummary>:1
msgid ":obj:`gitfs <salt.fileserver.gitfs>`\\"
msgstr ""
#: ../../<autosummary>:1
msgid "The backend for the git based file server system."
msgstr ""
#: ../../<autosummary>:1
msgid ":obj:`hgfs <salt.fileserver.hgfs>`\\"
msgstr ""
#: ../../<autosummary>:1
msgid "The backed for the mercurial based file server system."
msgstr ""
#: ../../<autosummary>:1
msgid ":obj:`roots <salt.fileserver.roots>`\\"
msgstr ""
#: ../../<autosummary>:1
msgid "The default file server backend"
msgstr ""
#: ../../<autosummary>:1
msgid ":obj:`s3fs <salt.fileserver.s3fs>`\\"
msgstr ""
#: ../../<autosummary>:1
msgid "The backend for a fileserver based on Amazon S3"
msgstr ""

View File

@ -1,77 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/file_server/all/salt.fileserver.gitfs.rst:6
msgid "salt.fileserver.gitfs"
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of salt.fileserver.gitfs:1
msgid "The backend for the git based file server system."
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of salt.fileserver.gitfs:3
msgid ""
"After enabling this backend, branches and tags in a remote git repository "
"are exposed to salt as different environments. This feature is managed by "
"the fileserver_backend option in the salt master config."
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of salt.fileserver.gitfs:7
msgid "gitpython Python module"
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of
#: salt.fileserver.gitfs.dir_list:1
msgid "Return a list of all directories on the master"
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of salt.fileserver.gitfs.envs:1
msgid "Return a list of refs that can be used as environments"
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of
#: salt.fileserver.gitfs.file_hash:1
msgid "Return a file hash, the hash type is set in the master config file"
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of
#: salt.fileserver.gitfs.file_list:1
msgid ""
"Return a list of all files on the file server in a specified environment"
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of
#: salt.fileserver.gitfs.file_list_emptydirs:1
msgid "Return a list of all empty directories on the master"
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of
#: salt.fileserver.gitfs.find_file:1
msgid ""
"Find the first file to match the path and ref, read the file out of git and "
"send the path to the newly cached file"
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of salt.fileserver.gitfs.init:1
msgid "Return the git repo object for this session"
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of
#: salt.fileserver.gitfs.serve_file:1
msgid "Return a chunk from a file based on the data received"
msgstr ""
#: ../../../salt/fileserver/gitfs.pydocstring of
#: salt.fileserver.gitfs.update:1
msgid "Execute a git pull on all of the repos"
msgstr ""

View File

@ -1,85 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/file_server/all/salt.fileserver.hgfs.rst:6
msgid "salt.fileserver.hgfs"
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of salt.fileserver.hgfs:1
msgid "The backed for the mercurial based file server system."
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of salt.fileserver.hgfs:3
msgid ""
"After enabling this backend, branches, bookmarks, and tags in a remote "
"mercurial repository are exposed to salt as different environments. This "
"feature is managed by the fileserver_backend option in the salt master "
"config."
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of salt.fileserver.hgfs:7
msgid ""
"This fileserver has an additional option ``hgfs_branch_method`` that will "
"set the desired branch method. Possible values are: ``branches``, "
"``bookmarks``, or ``mixed``. If using ``branches`` or ``mixed``, the "
"``default`` branch will be mapped to ``base``."
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of salt.fileserver.hgfs:12
msgid "mercurial"
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of
#: salt.fileserver.hgfs.dir_list:1
msgid "Return a list of all directories on the master"
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of salt.fileserver.hgfs.envs:1
msgid "Return a list of refs that can be used as environments"
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of
#: salt.fileserver.hgfs.file_hash:1
msgid "Return a file hash, the hash type is set in the master config file"
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of
#: salt.fileserver.hgfs.file_list:1
msgid ""
"Return a list of all files on the file server in a specified environment"
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of
#: salt.fileserver.hgfs.file_list_emptydirs:1
msgid "Return a list of all empty directories on the master"
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of
#: salt.fileserver.hgfs.find_file:1
msgid ""
"Find the first file to match the path and ref, read the file out of hg and "
"send the path to the newly cached file"
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of salt.fileserver.hgfs.init:1
msgid "Return the hg repo object for this session"
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of
#: salt.fileserver.hgfs.serve_file:1
msgid "Return a chunk from a file based on the data received"
msgstr ""
#: ../../../salt/fileserver/hgfs.pydocstring of salt.fileserver.hgfs.update:1
msgid "Execute a hg pull on all of the repos"
msgstr ""

View File

@ -1,71 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/file_server/all/salt.fileserver.roots.rst:6
msgid "salt.fileserver.roots"
msgstr ""
#: ../../../salt/fileserver/roots.pydocstring of salt.fileserver.roots:1
msgid "The default file server backend"
msgstr ""
#: ../../../salt/fileserver/roots.pydocstring of salt.fileserver.roots:3
msgid ""
"Based on the environments in the :conf_master:`file_roots` configuration "
"option."
msgstr ""
#: ../../../salt/fileserver/roots.pydocstring of
#: salt.fileserver.roots.dir_list:1
msgid "Return a list of all directories on the master"
msgstr ""
#: ../../../salt/fileserver/roots.pydocstring of salt.fileserver.roots.envs:1
msgid "Return the file server environments"
msgstr ""
#: ../../../salt/fileserver/roots.pydocstring of
#: salt.fileserver.roots.file_hash:1
msgid "Return a file hash, the hash type is set in the master config file"
msgstr ""
#: ../../../salt/fileserver/roots.pydocstring of
#: salt.fileserver.roots.file_list:1
msgid ""
"Return a list of all files on the file server in a specified environment"
msgstr ""
#: ../../../salt/fileserver/roots.pydocstring of
#: salt.fileserver.roots.file_list_emptydirs:1
msgid "Return a list of all empty directories on the master"
msgstr ""
#: ../../../salt/fileserver/roots.pydocstring of
#: salt.fileserver.roots.find_file:1
msgid "Search the environment for the relative path"
msgstr ""
#: ../../../salt/fileserver/roots.pydocstring of
#: salt.fileserver.roots.serve_file:1
msgid "Return a chunk from a file based on the data received"
msgstr ""
#: ../../../salt/fileserver/roots.pydocstring of
#: salt.fileserver.roots.symlink_list:1
msgid "Return a dict of all symlinks based on a given path on the Master"
msgstr ""
#: ../../../salt/fileserver/roots.pydocstring of
#: salt.fileserver.roots.update:1
msgid "When we are asked to update (regular interval) lets reap the cache"
msgstr ""

View File

@ -1,116 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/file_server/all/salt.fileserver.s3fs.rst:6
msgid "salt.fileserver.s3fs"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs:1
msgid "The backend for a fileserver based on Amazon S3"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs:3
msgid ":doc:`/ref/file_server/index`"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs:5
msgid ""
"This backend exposes directories in S3 buckets as Salt environments. This "
"feature is managed by the :conf_master:`fileserver_backend` option in the "
"Salt Master config."
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs:10
msgid "S3 credentials can be set in the master config file like so:"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs:17
msgid ""
"Alternatively, if on EC2 these credentials can be automatically loaded from "
"instance metadata."
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs:20
msgid ""
"Additionally, ``s3fs`` must be included in the "
":conf_master:`fileserver_backend` config parameter in the master config "
"file:"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs:28
msgid "This fileserver supports two modes of operation for the buckets:"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs:30
msgid ":strong:`A single bucket per environment`"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs:42
msgid ":strong:`Multiple environments per bucket`"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs:52
msgid ""
"Note that bucket names must be all lowercase both in the AWS console and in "
"Salt, otherwise you may encounter ``SignatureDoesNotMatch`` errors."
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs:55
msgid ""
"A multiple-environment bucket must adhere to the following root directory "
"structure::"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of
#: salt.fileserver.s3fs.dir_list:1
msgid "Return a list of all directories on the master"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs.envs:1
msgid ""
"Return a list of directories within the bucket that can be used as "
"environments."
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of
#: salt.fileserver.s3fs.file_hash:1
msgid "Return an MD5 file hash"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of
#: salt.fileserver.s3fs.file_list:1
msgid ""
"Return a list of all files on the file server in a specified environment"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of
#: salt.fileserver.s3fs.file_list_emptydirs:1
msgid "Return a list of all empty directories on the master"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of
#: salt.fileserver.s3fs.find_file:1
msgid ""
"Look through the buckets cache file for a match. If the field is found, it "
"is retrieved from S3 only if its cached version is missing, or if the MD5 "
"does not match."
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of
#: salt.fileserver.s3fs.serve_file:1
msgid "Return a chunk from a file based on the data received"
msgstr ""
#: ../../../salt/fileserver/s3fs.pydocstring of salt.fileserver.s3fs.update:1
msgid "Update the cache file for the bucket."
msgstr ""

View File

@ -1,60 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/file_server/backends.rst:6
msgid "File Server Backends"
msgstr ""
#: ../../ref/file_server/backends.rst:8
msgid ""
"Salt version 0.12.0 introduced the ability for the Salt Master to integrate "
"different file server backends. File server backends allows the Salt file "
"server to act as a transparent bridge to external resources. The primary "
"example of this is the git backend which allows for all of the Salt formulas"
" and files to be maintained in a remote git repository."
msgstr ""
#: ../../ref/file_server/backends.rst:14
msgid ""
"The fileserver backend system can accept multiple backends as well. This "
"makes it possible to have the environments listed in the file_roots "
"configuration available in addition to other backends, or the ability to mix"
" multiple backends."
msgstr ""
#: ../../ref/file_server/backends.rst:19
msgid ""
"This feature is managed by the `fileserver_backend` option in the master "
"config. The desired backend systems are listed in order of search priority:"
msgstr ""
#: ../../ref/file_server/backends.rst:28
msgid ""
"If this configuration the environments and files defined in the `file_roots`"
" configuration will be searched first, if the referenced environment and "
"file is not found then the git backend will be searched."
msgstr ""
#: ../../ref/file_server/backends.rst:33
msgid "Environments"
msgstr ""
#: ../../ref/file_server/backends.rst:35
msgid ""
"The concept of environments is followed in all backend systems. The "
"environments in the classic `roots` backend are defined in the `file_roots` "
"option. Environments map differently based on the backend, for instance the "
"git backend translated branches and tags in git to environments. This makes "
"it easy to define environments in git by just setting a tag or forking a "
"branch."
msgstr ""

View File

@ -1,102 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/file_server/dynamic-modules.rst:6
msgid "Dynamic Module Distribution"
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:10
msgid ""
"Salt Python modules can be distributed automatically via the Salt file "
"server. Under the root of any environment defined via the "
":conf_master:`file_roots` option on the master server directories "
"corresponding to the type of module can be used."
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:16
msgid "Module sync"
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:18
msgid ""
"Automatically transfer and load modules, grains, renderers, returners, "
"states, etc from the master to the minions."
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:21
msgid "The directories are prepended with an underscore:"
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:23
msgid ":file:`_modules`"
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:24
msgid ":file:`_grains`"
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:25
msgid ":file:`_renderers`"
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:26
msgid ":file:`_returners`"
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:27
msgid ":file:`_states`"
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:29
msgid ""
"The contents of these directories need to be synced over to the minions "
"after Python modules have been created in them. There are a number of ways "
"to sync the modules."
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:34
msgid "Sync Via States"
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:36
msgid ""
"The minion configuration contains an option ``autoload_dynamic_modules`` "
"which defaults to True. This option makes the state system refresh all "
"dynamic modules when states are run. To disable this behavior set "
"``autoload_dynamic_modules`` to False in the minion config."
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:41
msgid ""
"When dynamic modules are autoloaded via states, modules only pertinent to "
"the environments matched in the master's top file are downloaded."
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:44
msgid ""
"This is important to remember, because modules can be manually loaded from "
"any specific environment that environment specific modules will be loaded "
"when a state run is executed."
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:49
msgid "Sync Via the saltutil Module"
msgstr ""
#: ../../ref/file_server/dynamic-modules.rst:51
msgid ""
"The saltutil module has a number of functions that can be used to sync all "
"or specific dynamic modules. The saltutil module function "
"``saltutil.sync_all`` will sync all module types over to a minion. For more "
"information see: :mod:`salt.modules.saltutil`"
msgstr ""

View File

@ -1,97 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/file_server/file_roots.rst:6
msgid "File Server Configuration"
msgstr ""
#: ../../ref/file_server/file_roots.rst:8
msgid ""
"The Salt file server is a high performance file server written in ZeroMQ. It"
" manages large files quickly and with little overhead, and has been "
"optimized to handle small files in an extremely efficient manner."
msgstr ""
#: ../../ref/file_server/file_roots.rst:12
msgid ""
"The Salt file server is an environment aware file server. This means that "
"files can be allocated within many root directories and accessed by "
"specifying both the file path and the environment to search. The individual "
"environments can span across multiple directory roots to create overlays and"
" to allow for files to be organized in many flexible ways."
msgstr ""
#: ../../ref/file_server/file_roots.rst:20
msgid "Environments"
msgstr ""
#: ../../ref/file_server/file_roots.rst:22
msgid ""
"The Salt file server defaults to the mandatory ``base`` environment. This "
"environment **MUST** be defined and is used to download files when no "
"environment is specified."
msgstr ""
#: ../../ref/file_server/file_roots.rst:26
msgid ""
"Environments allow for files and sls data to be logically separated, but "
"environments are not isolated from each other. This allows for logical "
"isolation of environments by the engineer using Salt, but also allows for "
"information to be used in multiple environments."
msgstr ""
#: ../../ref/file_server/file_roots.rst:33
msgid "Directory Overlay"
msgstr ""
#: ../../ref/file_server/file_roots.rst:35
msgid ""
"The ``environment`` setting is a list of directories to publish files from. "
"These directories are searched in order to find the specified file and the "
"first file found is returned."
msgstr ""
#: ../../ref/file_server/file_roots.rst:39
msgid ""
"This means that directory data is prioritized based on the order in which "
"they are listed. In the case of this ``file_roots`` configuration:"
msgstr ""
#: ../../ref/file_server/file_roots.rst:49
msgid ""
"If a file's URI is ``salt://httpd/httpd.conf``, it will first search for the"
" file at ``/srv/salt/base/httpd/httpd.conf``. If the file is found there it "
"will be returned. If the file is not found there, then "
"``/srv/salt/failover/httpd/httpd.conf`` will be used for the source."
msgstr ""
#: ../../ref/file_server/file_roots.rst:54
msgid ""
"This allows for directories to be overlaid and prioritized based on the "
"order they are defined in the configuration."
msgstr ""
#: ../../ref/file_server/file_roots.rst:58
msgid "Local File Server"
msgstr ""
#: ../../ref/file_server/file_roots.rst:63
msgid ""
"The file server can be rerouted to run from the minion. This is primarily to"
" enable running Salt states without a Salt master. To use the local file "
"server interface, copy the file server data to the minion and set the "
"file_roots option on the minion to point to the directories copied from the "
"master. Once the minion ``file_roots`` option has been set, change the "
"``file_client`` option to local to make sure that the local file server "
"interface is used."
msgstr ""

View File

@ -1,157 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/file_server/index.rst:6
msgid "Salt File Server"
msgstr ""
#: ../../ref/file_server/index.rst:8
msgid ""
"Salt comes with a simple file server suitable for distributing files to the "
"Salt minions. The file server is a stateless ZeroMQ server that is built "
"into the Salt master."
msgstr ""
#: ../../ref/file_server/index.rst:12
msgid ""
"The main intent of the Salt file server is to present files for use in the "
"Salt state system. With this said, the Salt file server can be used for any "
"general file transfer from the master to the minions."
msgstr ""
#: ../../ref/file_server/index.rst:17
msgid "The cp Module"
msgstr ""
#: ../../ref/file_server/index.rst:19
msgid ""
"The cp module is the home of minion side file server operations. The cp "
"module is used by the Salt state system, salt-cp and can be used to "
"distribute files presented by the Salt file server."
msgstr ""
#: ../../ref/file_server/index.rst:24
msgid "Environments"
msgstr ""
#: ../../ref/file_server/index.rst:26
msgid ""
"Since the file server is made to work with the Salt state system, it "
"supports environments. The environments are defined in the master config "
"file and when referencing an environment the file specified will be based on"
" the root directory of the environment."
msgstr ""
#: ../../ref/file_server/index.rst:32
msgid "get_file"
msgstr ""
#: ../../ref/file_server/index.rst:34
msgid ""
"The cp.get_file function can be used on the minion to download a file from "
"the master, the syntax looks like this:"
msgstr ""
#: ../../ref/file_server/index.rst:41
msgid ""
"This will instruct all Salt minions to download the vimrc file and copy it "
"to /etc/vimrc"
msgstr ""
#: ../../ref/file_server/index.rst:44
msgid ""
"Template rendering can be enabled on both the source and destination file "
"names like so:"
msgstr ""
#: ../../ref/file_server/index.rst:51
msgid ""
"This example would instruct all Salt minions to download the vimrc from a "
"directory with the same name as their OS grain and copy it to /etc/vimrc"
msgstr ""
#: ../../ref/file_server/index.rst:54
msgid ""
"For larger files, the cp.get_file module also supports gzip compression. "
"Because gzip is CPU-intensive, this should only be used in scenarios where "
"the compression ratio is very high (e.g. pretty-printed JSON or YAML files)."
msgstr ""
#: ../../ref/file_server/index.rst:59
msgid ""
"Use the *gzip* named argument to enable it. Valid values are 1..9, where 1 "
"is the lightest compression and 9 the heaviest. 1 uses the least CPU on the"
" master (and minion), 9 uses the most."
msgstr ""
#: ../../ref/file_server/index.rst:67
msgid ""
"Finally, note that by default cp.get_file does *not* create new destination "
"directories if they do not exist. To change this, use the *makedirs* "
"argument:"
msgstr ""
#: ../../ref/file_server/index.rst:74
msgid ""
"In this example, /etc/vim/ would be created if it didn't already exist."
msgstr ""
#: ../../ref/file_server/index.rst:77
msgid "get_dir"
msgstr ""
#: ../../ref/file_server/index.rst:79
msgid ""
"The cp.get_dir function can be used on the minion to download an entire "
"directory from the master. The syntax is very similar to get_file:"
msgstr ""
#: ../../ref/file_server/index.rst:86
msgid ""
"cp.get_dir supports *template* rendering and *gzip* compression arguments "
"just like get_file:"
msgstr ""
#: ../../ref/file_server/index.rst:95
msgid "File Server Client API"
msgstr ""
#: ../../ref/file_server/index.rst:97
msgid ""
"A client API is available which allows for modules and applications to be "
"written which make use of the Salt file server."
msgstr ""
#: ../../ref/file_server/index.rst:100
msgid ""
"The file server uses the same authentication and encryption used by the rest"
" of the Salt system for network communication."
msgstr ""
#: ../../ref/file_server/index.rst:104
msgid "FileClient Class"
msgstr ""
#: ../../ref/file_server/index.rst:106
msgid ""
"The FileClient class is used to set up the communication from the minion to "
"the master. When creating a FileClient object the minion configuration needs"
" to be passed in. When using the FileClient from within a minion module the "
"built in ``__opts__`` data can be passed:"
msgstr ""
#: ../../ref/file_server/index.rst:127
msgid ""
"Using the FileClient class outside of a minion module where the ``__opts__``"
" data is not available, it needs to be generated:"
msgstr ""

View File

@ -1,191 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/index.rst:6
msgid "Introduction to Extending Salt"
msgstr ""
#: ../../ref/index.rst:8
msgid ""
"Salt is made to be used, and made to be extended. The primary goal of Salt "
"is to provide a foundation which can be used to solve problems without "
"assuming what those problems might be."
msgstr ""
#: ../../ref/index.rst:12
msgid ""
"One of the greatest benefit of developing Salt has been the vast array of "
"ways in which people have wanted to use it, while the original intention was"
" as a communication layer for a cloud controller Salt has been extended to "
"facilitate so much more."
msgstr ""
#: ../../ref/index.rst:18
msgid "Client API"
msgstr ""
#: ../../ref/index.rst:20
msgid ""
"The primary interface used to extend Salt, is to simply use it. Salt "
"executions can be called via the Salt client API, making programming master "
"side solutions with Salt is easy."
msgstr ""
#: ../../ref/index.rst:24
msgid ":ref:`client-apis`"
msgstr ""
#: ../../ref/index.rst:27
msgid "Adding Loadable Plugins"
msgstr ""
#: ../../ref/index.rst:29
msgid ""
"Salt is comprised of a core platform that loads many types of easy to write "
"plugins. The idea is to enable all of the breaking points in the Salt "
"processes to have a point of pluggable interaction. This means that all of "
"the main features of Salt can be extended, modified or used."
msgstr ""
#: ../../ref/index.rst:34
msgid ""
"The breaking points and helping interfaces span from convenience master side"
" executions to manipulating the flow of how data is handled by Salt."
msgstr ""
#: ../../ref/index.rst:38
msgid "Minion Execution Modules"
msgstr ""
#: ../../ref/index.rst:40
msgid ""
"The minion execution modules or just ``modules`` are the core to what Salt "
"is and does. These modules are found in:"
msgstr ""
#: ../../ref/index.rst:43
msgid ":blob:`salt/modules`"
msgstr ""
#: ../../ref/index.rst:45
msgid ""
"These modules are what is called by the Salt command line and the salt "
"client API. Adding modules is done by simply adding additional Python "
"modules to the *modules* directory and restarting the minion."
msgstr ""
#: ../../ref/index.rst:50
msgid "Grains"
msgstr ""
#: ../../ref/index.rst:52
msgid ""
"Salt grains, or \"grains of truth\" are bits of static information that are "
"generated when the minion starts. This information is useful when "
"determining what package manager to default to, or where certain "
"configuration files are stored on the minion."
msgstr ""
#: ../../ref/index.rst:57
msgid ""
"The Salt grains are the interface used for auto detection and dynamic "
"assignment of execution modules and types to specific Salt minions."
msgstr ""
#: ../../ref/index.rst:60
msgid "The code used to generate the Salt grains can be found here:"
msgstr ""
#: ../../ref/index.rst:62
msgid ":blob:`salt/grains`"
msgstr ""
#: ../../ref/index.rst:65
msgid "States"
msgstr ""
#: ../../ref/index.rst:67
msgid ""
"Salt supports state enforcement, this makes Salt a high speed and very "
"efficient solution for system configuration management."
msgstr ""
#: ../../ref/index.rst:70
msgid "States can be easily added to Salt by dropping a new state module in:"
msgstr ""
#: ../../ref/index.rst:72
msgid ":blob:`salt/states`"
msgstr ""
#: ../../ref/index.rst:75
msgid "Renderers"
msgstr ""
#: ../../ref/index.rst:77
msgid ""
"Salt states are controlled by simple data structures, these structures can "
"be abstracted in a number of ways. While the default is to be in a YAML file"
" wrapped in a jinja template, any abstraction can be used. This means that "
"any format that can be dreamed is possible, so long as a renderer is written"
" for it."
msgstr ""
#: ../../ref/index.rst:83
msgid "The existing renderers can be found here:"
msgstr ""
#: ../../ref/index.rst:85
msgid ":blob:`salt/renderers`"
msgstr ""
#: ../../ref/index.rst:88
msgid "Returners"
msgstr ""
#: ../../ref/index.rst:90
msgid ""
"The Salt commands all produce a return value, that return value is sent to "
"the Salt master by default, but it can be sent anywhere. The returner "
"interface makes it programmatically possible for the information to be sent "
"to anything from an SQL or NoSQL database, to a custom application made to "
"use Salt."
msgstr ""
#: ../../ref/index.rst:95
msgid "The existing returners can be found here:"
msgstr ""
#: ../../ref/index.rst:97
msgid ":blob:`salt/returners`"
msgstr ""
#: ../../ref/index.rst:100
msgid "Runners"
msgstr ""
#: ../../ref/index.rst:102
msgid ""
"Sometimes a certain application can be made to execute and run from the "
"existing Salt command line. This is where the Salt runners come into play. "
"The Salt Runners what is called by the Salt-run command and are meant to act"
" as a generic interface for encapsulating master side executions."
msgstr ""
#: ../../ref/index.rst:107
msgid "Existing Salt runners are located here:"
msgstr ""
#: ../../ref/index.rst:109
msgid ":blob:`salt/runners`"
msgstr ""

View File

@ -1,31 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/internals/exceptions.rst:6
msgid "Exceptions"
msgstr ""
#: ../../ref/internals/exceptions.rst:8
msgid ""
"Salt-specific exceptions should be thrown as often as possible so the "
"various interfaces to Salt (CLI, API, etc) can handle those errors "
"appropriately and display error messages appropriately."
msgstr ""
#: ../../<autosummary>:1
msgid ":obj:`salt.exceptions <salt.exceptions>`\\"
msgstr ""
#: ../../<autosummary>:1
msgid "This module is a central location for all salt exceptions"
msgstr ""

View File

@ -1,24 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/internals/index.rst:6
msgid "Salt code and internals"
msgstr ""
#: ../../ref/internals/index.rst:8
msgid "Reference documentation on Salt's internal code."
msgstr ""
#: ../../ref/internals/index.rst:11
msgid "Contents"
msgstr ""

View File

@ -1,100 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/internals/salt.exceptions.rst:6
msgid "salt.exceptions"
msgstr ""
#: ../../../salt/exceptions.pydocstring of salt.exceptions:1
msgid "This module is a central location for all salt exceptions"
msgstr ""
#: ../../../salt/exceptions.pydocstring of
#: salt.exceptions.AuthenticationError:1
msgid "If sha256 signature fails during decryption"
msgstr ""
#: ../../../salt/exceptions.pydocstring of
#: salt.exceptions.CommandExecutionError:1
msgid ""
"Used when a module runs a command which returns an error and wants to show "
"the user the output gracefully instead of dying"
msgstr ""
#: ../../../salt/exceptions.pydocstring of
#: salt.exceptions.CommandNotFoundError:1
msgid "Used in modules or grains when a required binary is not available"
msgstr ""
#: ../../../salt/exceptions.pydocstring of
#: salt.exceptions.EauthAuthenticationError:1
msgid "Thrown when eauth authentication fails"
msgstr ""
#: ../../../salt/exceptions.pydocstring of salt.exceptions.LoaderError:1
msgid "Problems loading the right renderer"
msgstr ""
#: ../../../salt/exceptions.pydocstring of salt.exceptions.MasterExit:1
msgid "Rise when the master exits"
msgstr ""
#: ../../../salt/exceptions.pydocstring of salt.exceptions.MinionError:1
msgid "Minion problems reading uris such as salt:// or http://"
msgstr ""
#: ../../../salt/exceptions.pydocstring of salt.exceptions.PkgParseError:1
msgid ""
"Used when of the pkg modules cannot correctly parse the output from the CLI "
"tool (pacman, yum, apt, aptitude, etc)"
msgstr ""
#: ../../../salt/exceptions.pydocstring of salt.exceptions.SaltClientError:1
#: ../../../salt/exceptions.pydocstring of salt.exceptions.SaltMasterError:1
msgid "Problem reading the master root key"
msgstr ""
#: ../../../salt/exceptions.pydocstring of salt.exceptions.SaltException:1
msgid ""
"Base exception class; all Salt-specific exceptions should subclass this"
msgstr ""
#: ../../../salt/exceptions.pydocstring of
#: salt.exceptions.SaltInvocationError:1
msgid ""
"Used when the wrong number of arguments are sent to modules or invalid "
"arguments are specified on the command line"
msgstr ""
#: ../../../salt/exceptions.pydocstring of salt.exceptions.SaltRenderError:1
msgid "Used when a renderer needs to raise an explicit error"
msgstr ""
#: ../../../salt/exceptions.pydocstring of
#: salt.exceptions.SaltReqTimeoutError:1
msgid ""
"Thrown when a salt master request call fails to return within the timeout"
msgstr ""
#: ../../../salt/exceptions.pydocstring of salt.exceptions.SaltSystemExit:1
msgid ""
"This exception is raised when an unsolvable problem is found. There's "
"nothing else to do, salt should just exit."
msgstr ""
#: ../../../salt/exceptions.pydocstring of
#: salt.exceptions.TimedProcTimeoutError:1
msgid ""
"Thrown when a timed subprocess does not terminate within the timeout, or if "
"the specified timeout is not an int or a float"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -1,59 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.aliases.rst:6
msgid "salt.modules.aliases"
msgstr ""
#: ../../../salt/modules/aliases.pydocstring of salt.modules.aliases:1
msgid "Manage the information in the aliases file"
msgstr ""
#: ../../../salt/modules/aliases.pydocstring of
#: salt.modules.aliases.get_target:1
msgid "Return the target associated with an alias"
msgstr ""
#: ../../../salt/modules/aliases.pydocstring of
#: salt.modules.aliases.get_target:3 ../../../salt/modules/aliases.pydocstring
#: of salt.modules.aliases.has_target:3
#: ../../../salt/modules/aliases.pydocstring of
#: salt.modules.aliases.list_aliases:5
#: ../../../salt/modules/aliases.pydocstring of
#: salt.modules.aliases.rm_alias:3 ../../../salt/modules/aliases.pydocstring
#: of salt.modules.aliases.set_target:5
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/aliases.pydocstring of
#: salt.modules.aliases.has_target:1
msgid "Return true if the alias/target is set"
msgstr ""
#: ../../../salt/modules/aliases.pydocstring of
#: salt.modules.aliases.list_aliases:1
msgid "Return the aliases found in the aliases file in this format::"
msgstr ""
#: ../../../salt/modules/aliases.pydocstring of
#: salt.modules.aliases.rm_alias:1
msgid "Remove an entry from the aliases file"
msgstr ""
#: ../../../salt/modules/aliases.pydocstring of
#: salt.modules.aliases.set_target:1
msgid ""
"Set the entry in the aliases file for the given alias, this will overwrite "
"any previous entry for the given alias or create a new one if it does not "
"exist."
msgstr ""

View File

@ -1,93 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.alternatives.rst:6
msgid "salt.modules.alternatives"
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives:1
msgid "Support for Alternatives system"
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives:3
msgid "Radek Rada <radek.rada@gmail.com>"
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives:4
msgid "© 2012 by the SaltStack Team, see AUTHORS for more details."
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives:5
msgid "Apache 2.0, see LICENSE for more details."
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.auto:1
msgid ""
"Trigger alternatives to set the path for <name> as specified by priority."
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.auto:4
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.check_installed:4
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.display:3
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.install:3
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.remove:3
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.set_:3
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.show_current:4
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.check_installed:1
msgid ""
"Check if the current highest-priority match for a given alternatives link is"
" set to the desired path"
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.display:1
msgid "Display alternatives settings for defined command name"
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.install:1
msgid "Install symbolic links determining default commands"
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.remove:1
msgid "Remove symbolic links determining the default commands."
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.set_:1
msgid "Manually set the alternative <path> for <name>."
msgstr ""
#: ../../../salt/modules/alternatives.pydocstring of
#: salt.modules.alternatives.show_current:1
msgid ""
"Display the current highest-priority alternative for a given alternatives "
"link"
msgstr ""

View File

@ -1,158 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.apache.rst:6
msgid "salt.modules.apache"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache:1
msgid "Support for Apache"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.a2dissite:1
msgid "Runs a2dissite for the given site."
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.a2dissite:3
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.a2ensite:3
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.check_site_enabled:3
msgid ""
"This will only be functional on Debian-based operating systems (Ubuntu, "
"Mint, etc)."
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.a2dissite:6
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.a2ensite:6
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.check_site_enabled:6
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.server_status:20
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.useradd:10
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.userdel:3
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.a2ensite:1
msgid "Runs a2ensite for the given site."
msgstr ""
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.check_site_enabled:1
msgid ""
"Checks to see if the specific Site symlink is in /etc/apache2/sites-enabled."
msgstr ""
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.directives:1
msgid ""
"Return list of directives together with expected arguments and places where "
"the directive is valid (``apachectl -L``)"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.directives:4 ../../../salt/modules/apache.pydocstring
#: of salt.modules.apache.fullversion:3
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.modules:3
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.servermods:3 ../../../salt/modules/apache.pydocstring
#: of salt.modules.apache.signal:3 ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.version:3 ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.vhosts:6
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.fullversion:1
msgid "Return server version from apachectl -V"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.modules:1
msgid "Return list of static and shared modules from apachectl -M"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.server_status:1
msgid "Get Information from the Apache server-status handler"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.server_status:3
msgid ""
"NOTE: the server-status handler is disabled by default. in order for this "
"function to work it needs to be enabled. "
"http://httpd.apache.org/docs/2.2/mod/mod_status.html"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.server_status:8
msgid ""
"The following configuration needs to exists in pillar/grains each entry "
"nested in apache.server-status is a profile of a vhost/server this would "
"give support for multiple apache servers/vhosts"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.server_status:18
msgid "apache.server-status:"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.server_status:18
msgid "'default':"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.server_status:14
msgid ""
"'url': http://localhost/server-status 'user': someuser 'pass': password "
"'realm': 'authentication realm for digest passwords' 'timeout': 5"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of
#: salt.modules.apache.servermods:1
msgid "Return list of modules compiled into the server (apachectl -l)"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.signal:1
msgid "Signals httpd to start, restart, or stop."
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.useradd:1
msgid ""
"Add an HTTP user using the htpasswd command. If the htpasswd file does not "
"exist, it will be created. Valid options that can be passed are:"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.useradd:4
msgid ""
"n Don't update file; display results on stdout. m Force MD5 encryption of "
"the password (default). d Force CRYPT encryption of the password. p Do not"
" encrypt the password (plaintext). s Force SHA encryption of the password."
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.userdel:1
msgid "Delete an HTTP user from the specified htpasswd file."
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.version:1
msgid "Return server version from apachectl -v"
msgstr ""
#: ../../../salt/modules/apache.pydocstring of salt.modules.apache.vhosts:1
msgid ""
"Show the settings as parsed from the config file (currently only shows the "
"virtualhost settings). (``apachectl -S``) Because each additional virtual "
"host adds to the execution time, this command may require a long timeout be "
"specified."
msgstr ""

View File

@ -1,391 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.apt.rst:6
msgid "salt.modules.apt"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt:1
msgid "Support for APT (Advanced Packaging Tool)"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.del_repo:1
msgid "Delete a repo from the sources.list / sources.list.d"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.del_repo:3
msgid ""
"If the .list file is in the sources.list.d directory and the file that the "
"repo exists in does not contain any other repo configuration, the file "
"itself will be deleted."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.del_repo:7
msgid ""
"The repo passed in must be a fully formed repository definition string."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.del_repo:10
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.file_dict:5
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.file_list:5
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.get_repo:5
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.mod_repo:20
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.expand_repo_def:1
msgid ""
"Take a repository definition and expand it to the full pkg repository dict "
"that can be used for comparison. This is a helper function to make the "
"Debian/Ubuntu apt sources sane for comparison in the pkgrepo states."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.expand_repo_def:5
msgid "There is no use to calling this function via the CLI."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.file_dict:1
msgid ""
"List the files that belong to a package, grouped by package. Not specifying "
"any packages will return a list of _every_ file on the system's package "
"database (not generally recommended)."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.file_list:1
msgid ""
"List the files that belong to a package. Not specifying any packages will "
"return a list of _every_ file on the system's package database (not "
"generally recommended)."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.get_repo:1
msgid "Display a repo from the sources.list / sources.list.d"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.get_repo:3
msgid "The repo passwd in needs to be a complete repo entry."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.get_selections:1
msgid "View package state from the dpkg database."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.get_selections:3
msgid "Returns a dict of dicts containing the state, and package names:"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.get_selections:15
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:14
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:46
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:62
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.latest_version:10
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.list_pkgs:13
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.list_repos:3
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.list_upgrades:3
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.purge:19
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.refresh_db:10
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.remove:18
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.set_selections:30
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.upgrade:8
#: ../../../salt/modules/apt.pydocstring of
#: salt.modules.apt.upgrade_available:3 ../../../salt/modules/apt.pydocstring
#: of salt.modules.apt.version:5 ../../../salt/modules/apt.pydocstring of
#: salt.modules.apt.version_cmp:5
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:1
msgid ""
"Install the passed package, add refresh=True to update the dpkg database."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:18
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.purge:6
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.remove:5
msgid "name"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:4
msgid ""
"The name of the package to be installed. Note that this parameter is ignored"
" if either \"pkgs\" or \"sources\" is passed. Additionally, please note that"
" this option can only be used to install packages from a software "
"repository. To install a package file manually, use the \"sources\" option."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:10
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:58
msgid ""
"32-bit packages can be installed on 64-bit systems by appending the "
"architecture designation (``:i386``, etc.) to the end of the package name."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:21
msgid "refresh"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:21
msgid "Whether or not to refresh the package database before installing."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:25
msgid "fromrepo"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:24
msgid ""
"Specify a package repository to install from (e.g., ``apt-get -t unstable "
"install somepackage``)"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:29
msgid "skip_verify"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:28
msgid ""
"Skip the GPG verification check (e.g., ``--allow-unauthenticated``, or "
"``--force-bad-verify`` for install from package file)."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:33
msgid "debconf"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:32
msgid ""
"Provide the path to a debconf answers file, processed before installation."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:38
msgid "version"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:36
msgid ""
"Install a specific version of the package, e.g. 1.2.3~0ubuntu0. Ignored if "
"\"pkgs\" or \"sources\" is passed."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:40
msgid "Multiple Package Installation Options:"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:51
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.purge:12
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.remove:11
msgid "pkgs"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:43
msgid ""
"A list of packages to install from a software repository. Must be passed as "
"a python list."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:67
msgid "sources"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:54
msgid ""
"A list of DEB packages to install. Must be passed as a list of dicts, with "
"the keys being package names, and the values being the source URI or local "
"path to the package."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.install:69
msgid "Returns a dict containing the new package names and versions::"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.latest_version:1
msgid ""
"Return the latest version of the named package available for upgrade or "
"installation. If more than one package name is specified, a dict of "
"name/version pairs is returned."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.latest_version:5
msgid ""
"If the latest version of a given package is already installed, an empty "
"string will be returned for that package."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.latest_version:8
msgid ""
"A specific repo can be requested using the ``fromrepo`` keyword argument."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.list_pkgs:1
msgid "List the packages currently installed in a dict::"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.list_pkgs:5
msgid ""
"If removed is ``True``, then only packages which have been removed (but not "
"purged) will be returned."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.list_pkgs:8
msgid "External dependencies::"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.list_repos:1
msgid "Lists all repos in the sources.list (and sources.lists.d) files"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.list_upgrades:1
msgid "List all available package upgrades."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.mod_repo:1
msgid ""
"Modify one or more values for a repo. If the repo does not exist, it will "
"be created, so long as the definition is well formed. For Ubuntu the "
"\"ppa:<project>/repo\" format is acceptable. \"ppa:\" format can only be "
"used to create a new repository."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.mod_repo:6
msgid "The following options are available to modify a repo definition::"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.purge:1
msgid ""
"Remove packages via ``apt-get purge`` along with all configuration files and"
" unused dependencies."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.purge:5
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.remove:4
msgid "The name of the package to be deleted."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.purge:8
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.remove:7
msgid "Multiple Package Options:"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.purge:11
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.remove:10
msgid ""
"A list of packages to delete. Must be passed as a python list. The ``name`` "
"parameter will be ignored if this option is passed."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.purge:17
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.remove:16
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.upgrade:3
msgid "Returns a dict containing the changes."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.refresh_db:1
msgid "Updates the APT database to latest packages based upon repositories"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.refresh_db:3
msgid ""
"Returns a dict, with the keys being package databases and the values being "
"the result of the update attempt. Values can be one of the following:"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.refresh_db:6
msgid "``True``: Database updated successfully"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.refresh_db:7
msgid "``False``: Problem updating database"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.refresh_db:8
msgid "``None``: Database already up-to-date"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.remove:1
msgid "Remove packages using ``apt-get remove``."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.set_selections:1
msgid "Change package state in the dpkg database."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.set_selections:3
msgid "The state can be any one of, documented in ``dpkg(1)``:"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.set_selections:5
msgid "install"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.set_selections:6
msgid "hold"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.set_selections:7
msgid "deinstall"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.set_selections:8
msgid "purge"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.set_selections:10
msgid ""
"This command is commonly used to mark specific packages to be held from "
"being upgraded, that is, to be kept at a certain version. When a state is "
"changed to anything but being held, then it is typically followed by ``apt-"
"get -u dselect-upgrade``."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.set_selections:15
msgid ""
"Note: Be careful with the ``clear`` argument, since it will start with "
"setting all packages to deinstall state."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.set_selections:18
msgid ""
"Returns a dict of dicts containing the package names, and the new and old "
"versions:"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.upgrade:1
msgid "Upgrades all packages via ``apt-get dist-upgrade``"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.upgrade:6
msgid "{'<package>': {'old': '<old-version>',"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.upgrade:6
msgid "'new': '<new-version>'}}"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of
#: salt.modules.apt.upgrade_available:1
msgid "Check whether or not an upgrade is available for a given package"
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.version:1
msgid ""
"Returns a string representing the package version or an empty string if not "
"installed. If more than one package name is specified, a dict of "
"name/version pairs is returned."
msgstr ""
#: ../../../salt/modules/apt.pydocstring of salt.modules.apt.version_cmp:1
msgid ""
"Do a cmp-style comparison on two packages. Return -1 if pkg1 < pkg2, 0 if "
"pkg1 == pkg2, and 1 if pkg1 > pkg2. Return None if there was a problem "
"making the comparison."
msgstr ""

View File

@ -1,163 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.archive.rst:6
msgid "salt.modules.archive"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive:1
msgid "A module to wrap archive calls"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.gunzip:1
msgid "Uses the gunzip command to unpack gzip files"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.gunzip:3
msgid "CLI Example to create ``/tmp/sourcefile.txt``:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.gunzip:9
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.gzip:9
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.rar:10
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.unrar:10
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.unzip:9
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.zip_:9
msgid ""
"The template arg can be set to 'jinja' or another supported template engine "
"to render the command arguments before execution."
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.gunzip:12
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.gzip:12
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.rar:4
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:30
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.unrar:4
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.unzip:3
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.zip_:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.gzip:1
msgid "Uses the gzip command to create gzip files"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.gzip:3
msgid "CLI Example to create ``/tmp/sourcefile.txt.gz``:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.rar:1
msgid ""
"Uses the rar command to create rar files Uses rar for Linux from "
"http://www.rarlab.com/"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.rar:13
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.unrar:13
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.unzip:12
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.zip_:12
msgid "For example:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:3
msgid ""
"This function has changed for version 0.17.0. In prior versions, the ``cwd``"
" and ``template`` arguments must be specified, with the source "
"directories/files coming as a space-separated list at the end of the "
"command. Beginning with 0.17.0, ``sources`` must be a comma-separated list, "
"and the ``cwd`` and ``template`` arguments are optional."
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:9
msgid "Uses the tar command to pack, unpack, etc tar files"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:13
msgid "options:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:13
msgid "Options to pass to the ``tar`` binary."
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:16
msgid "tarfile:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:16
msgid "The tar filename to pack/unpack."
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:19
msgid "sources:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:19
msgid "Comma delimited list of files to **pack** into the tarfile."
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:22
msgid "dest:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:22
msgid "The destination directory to **unpack** the tarfile to."
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:25
msgid "cwd:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:25
msgid "The directory in which the tar command should be executed."
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:28
msgid "template:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:28
msgid "Template engine name to render the command arguments before execution."
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:37
msgid ""
"The template arg can be set to ``jinja`` or another supported template "
"engine to render the command arguments before execution. For example:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:45
msgid "To unpack a tarfile, for example:"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:47
msgid "..code-block:: bash"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.tar:49
msgid "salt '*' archive.tar foo.tar xf dest=/target/directory"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.unrar:1
msgid ""
"Uses the unrar command to unpack rar files Uses rar for Linux from "
"http://www.rarlab.com/"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.unzip:1
msgid "Uses the unzip command to unpack zip files"
msgstr ""
#: ../../../salt/modules/archive.pydocstring of salt.modules.archive.zip_:1
msgid "Uses the zip command to create zip files"
msgstr ""

View File

@ -1,53 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.at.rst:6
msgid "salt.modules.at"
msgstr ""
#: ../../../salt/modules/at.pydocstring of salt.modules.at:1
msgid "Wrapper module for at(1)"
msgstr ""
#: ../../../salt/modules/at.pydocstring of salt.modules.at:3
msgid "Also, a 'tag' feature has been added to more easily tag jobs."
msgstr ""
#: ../../../salt/modules/at.pydocstring of salt.modules.at.at:1
msgid "Add a job to the queue."
msgstr ""
#: ../../../salt/modules/at.pydocstring of salt.modules.at.at:3
msgid "The 'timespec' follows the format documented in the at(1) manpage."
msgstr ""
#: ../../../salt/modules/at.pydocstring of salt.modules.at.at:6
#: ../../../salt/modules/at.pydocstring of salt.modules.at.atc:5
#: ../../../salt/modules/at.pydocstring of salt.modules.at.atq:4
#: ../../../salt/modules/at.pydocstring of salt.modules.at.atrm:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/at.pydocstring of salt.modules.at.atc:1
msgid ""
"Print the at(1) script that will run for the passed job id. This is mostly "
"for debugging so the output will just be text."
msgstr ""
#: ../../../salt/modules/at.pydocstring of salt.modules.at.atq:1
msgid "List all queued and running jobs or only those with an optional 'tag'."
msgstr ""
#: ../../../salt/modules/at.pydocstring of salt.modules.at.atrm:1
msgid "Remove jobs from the queue."
msgstr ""

View File

@ -1,85 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.augeas_cfg.rst:6
msgid "salt.modules.augeas_cfg"
msgstr ""
#: ../../../salt/modules/augeas_cfg.pydocstring of salt.modules.augeas_cfg:1
msgid "Manages configuration files via augeas"
msgstr ""
#: ../../../salt/modules/augeas_cfg.pydocstring of salt.modules.augeas_cfg:3
msgid ":strong:`NOTE:` This state requires the ``augeas`` Python module."
msgstr ""
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.get:1
msgid "Get a value for a specific augeas path"
msgstr ""
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.get:3 ../../../salt/modules/augeas_cfg.pydocstring
#: of salt.modules.augeas_cfg.ls:3
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.match:3
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.remove:3
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.setvalue:3
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.setvalue:11
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.setvalue:20
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.tree:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.ls:1
msgid "List the direct children of a node"
msgstr ""
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.match:1
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.remove:1
msgid "Get matches for path expression"
msgstr ""
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.setvalue:1
msgid "Set a value for a specific augeas path"
msgstr ""
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.setvalue:9
msgid "This will set the first entry in /etc/hosts to localhost"
msgstr ""
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.setvalue:18
msgid ""
"Adds a new host to /etc/hosts the ip address 192.168.1.1 and hostname test"
msgstr ""
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.setvalue:32
msgid "Ensures that the following line is present in /etc/sudoers::"
msgstr ""
#: ../../../salt/modules/augeas_cfg.pydocstring of
#: salt.modules.augeas_cfg.tree:1
msgid "Returns recursively the complete tree of a node"
msgstr ""

View File

@ -1,113 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.bluez.rst:6
msgid "salt.modules.bluez"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez:1
msgid "Support for Bluetooth (using BlueZ in Linux)."
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez:3
msgid "The following packages are required packages for this module:"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez:5
msgid "bluez >= 5.7 bluez-libs >= 5.7 bluez-utils >= 5.7 pybluez >= 0.18"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.address_:1
msgid "Get the many addresses of the Bluetooth adapter"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.address_:3
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.block:3
#: ../../../salt/modules/bluez.pydocstring of
#: salt.modules.bluez.discoverable:3 ../../../salt/modules/bluez.pydocstring
#: of salt.modules.bluez.noscan:3 ../../../salt/modules/bluez.pydocstring of
#: salt.modules.bluez.pair:3 ../../../salt/modules/bluez.pydocstring of
#: salt.modules.bluez.scan:3 ../../../salt/modules/bluez.pydocstring of
#: salt.modules.bluez.start:3 ../../../salt/modules/bluez.pydocstring of
#: salt.modules.bluez.stop:3 ../../../salt/modules/bluez.pydocstring of
#: salt.modules.bluez.unblock:3 ../../../salt/modules/bluez.pydocstring of
#: salt.modules.bluez.unpair:3 ../../../salt/modules/bluez.pydocstring of
#: salt.modules.bluez.version:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.block:1
msgid "Block a specific bluetooth device by BD Address"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of
#: salt.modules.bluez.discoverable:1
msgid "Enable this bluetooth device to be discovrable."
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.noscan:1
msgid "Turn off scanning modes on this device."
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.pair:1
msgid "Pair the bluetooth adapter with a device"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.pair:9
msgid ""
"Where DE:AD:BE:EF:CA:FE is the address of the device to pair with, and 1234 "
"is the passphrase."
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.pair:12
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.unpair:11
msgid ""
"TODO: This function is currently broken, as the bluez-simple-agent program "
"no longer ships with BlueZ >= 5.0. It needs to be refactored."
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.power:1
msgid "Power a bluetooth device on or off"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.power:3
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.scan:1
msgid "Scan for bluetooth devices in the area"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.start:1
msgid "Start the bluetooth service."
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.stop:1
msgid "Stop the bluetooth service."
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.unblock:1
msgid "Unblock a specific bluetooth device by BD Address"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.unpair:1
msgid "Unpair the bluetooth adapter from a device"
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.unpair:9
msgid "Where DE:AD:BE:EF:CA:FE is the address of the device to unpair."
msgstr ""
#: ../../../salt/modules/bluez.pydocstring of salt.modules.bluez.version:1
msgid "Return Bluez version from bluetoothd -v"
msgstr ""

View File

@ -1,144 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.brew.rst:6
msgid "salt.modules.brew"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew:1
msgid "Homebrew for Mac OS X"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:1
msgid "Install the passed package(s) with ``brew install``"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:11
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.remove:5
msgid "name"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:4
msgid ""
"The name of the formula to be installed. Note that this parameter is ignored"
" if \"pkgs\" is passed."
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:7
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:16
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:31
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:43
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:55
#: ../../../salt/modules/brew.pydocstring of
#: salt.modules.brew.latest_version:7 ../../../salt/modules/brew.pydocstring
#: of salt.modules.brew.list_pkgs:5 ../../../salt/modules/brew.pydocstring of
#: salt.modules.brew.list_upgrades:3 ../../../salt/modules/brew.pydocstring of
#: salt.modules.brew.remove:18 ../../../salt/modules/brew.pydocstring of
#: salt.modules.brew.upgrade_available:3
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.version:5
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:22
msgid "taps"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:14
msgid "Unofficial Github repos to use when updating and installing formulas."
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:36
msgid "options"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:25
msgid ""
"Options to pass to brew. Only applies to inital install. Due to how brew "
"works, modifying chosen options requires a full uninstall followed by a "
"fresh install. Note that if \"pkgs\" is used, all options will be passed to "
"all packages. Unreconized options for a package will be silently ignored by "
"brew."
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:38
msgid "Multiple Package Installation Options:"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:48
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.remove:11
msgid "pkgs"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:41
msgid "A list of formulas to install. Must be passed as a python list."
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.install:50
msgid "Returns a dict containing the new package names and versions::"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of
#: salt.modules.brew.latest_version:1
msgid ""
"Return the latest version of the named package available for upgrade or "
"installation"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of
#: salt.modules.brew.latest_version:4
msgid ""
"Note that this currently not fully implemented but needs to return something"
" to avoid a traceback when calling pkg.latest."
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.list_pkgs:1
msgid "List the packages currently installed in a dict::"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.list_upgrades:1
msgid "Check whether or not an upgrade is available for all packages"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.remove:1
msgid "Removes packages with ``brew uninstall``."
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.remove:4
msgid "The name of the package to be deleted."
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.remove:7
msgid "Multiple Package Options:"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.remove:10
msgid ""
"A list of packages to delete. Must be passed as a python list. The ``name`` "
"parameter will be ignored if this option is passed."
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.remove:16
msgid "Returns a dict containing the changes."
msgstr ""
#: ../../../salt/modules/brew.pydocstring of
#: salt.modules.brew.upgrade_available:1
msgid "Check whether or not an upgrade is available for a given package"
msgstr ""
#: ../../../salt/modules/brew.pydocstring of salt.modules.brew.version:1
msgid ""
"Returns a string representing the package version or an empty string if not "
"installed. If more than one package name is specified, a dict of "
"name/version pairs is returned."
msgstr ""

View File

@ -1,82 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.bridge.rst:6
msgid "salt.modules.bridge"
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge:1
msgid "Module for gathering and managing bridging information"
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.add:1
msgid "Creates a bridge"
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.add:3
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.addif:3
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.delete:3
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.delif:3
#: ../../../salt/modules/bridge.pydocstring of
#: salt.modules.bridge.find_interfaces:3
#: ../../../salt/modules/bridge.pydocstring of
#: salt.modules.bridge.interfaces:3 ../../../salt/modules/bridge.pydocstring
#: of salt.modules.bridge.list_:3 ../../../salt/modules/bridge.pydocstring of
#: salt.modules.bridge.show:5 ../../../salt/modules/bridge.pydocstring of
#: salt.modules.bridge.stp:3 ../../../salt/modules/bridge.pydocstring of
#: salt.modules.bridge.stp:13
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.addif:1
msgid "Adds an interface to a bridge"
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.delete:1
msgid "Deletes a bridge"
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.delif:1
msgid "Removes an interface from a bridge"
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of
#: salt.modules.bridge.find_interfaces:1
msgid "Returns the bridge to which the interfaces are bond to"
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of
#: salt.modules.bridge.interfaces:1
msgid "Returns interfaces attached to a bridge"
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.list_:1
msgid "Returns the machine's bridges list"
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.show:1
msgid ""
"Returns bridges interfaces along with enslaved physical interfaces. If no "
"interface is given, all bridges are shown, else only the specified bridge "
"values are returned."
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.stp:1
msgid "Sets Spanning Tree Protocol state for a bridge"
msgstr ""
#: ../../../salt/modules/bridge.pydocstring of salt.modules.bridge.stp:10
msgid ""
"For the NetBSD operating system, it is required to add the interface on "
"which to enable the STP."
msgstr ""

View File

@ -1,79 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.bsd_shadow.rst:6
msgid "salt.modules.bsd_shadow"
msgstr ""
#: ../../../salt/modules/bsd_shadow.pydocstring of salt.modules.bsd_shadow:1
msgid "Manage the password database on BSD systems"
msgstr ""
#: ../../../salt/modules/bsd_shadow.pydocstring of
#: salt.modules.bsd_shadow.default_hash:1
msgid "Returns the default hash used for unset passwords"
msgstr ""
#: ../../../salt/modules/bsd_shadow.pydocstring of
#: salt.modules.bsd_shadow.default_hash:3
#: ../../../salt/modules/bsd_shadow.pydocstring of
#: salt.modules.bsd_shadow.info:3 ../../../salt/modules/bsd_shadow.pydocstring
#: of salt.modules.bsd_shadow.set_password:20
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/bsd_shadow.pydocstring of
#: salt.modules.bsd_shadow.info:1
msgid "Return information for the specified user"
msgstr ""
#: ../../../salt/modules/bsd_shadow.pydocstring of
#: salt.modules.bsd_shadow.set_password:1
msgid ""
"Set the password for a named user. The password must be a properly defined "
"hash. The password hash can be generated with this command:"
msgstr ""
#: ../../../salt/modules/bsd_shadow.pydocstring of
#: salt.modules.bsd_shadow.set_password:4
msgid "``python -c \"import crypt; print crypt.crypt('password', ciphersalt)\"``"
msgstr ""
#: ../../../salt/modules/bsd_shadow.pydocstring of
#: salt.modules.bsd_shadow.set_password:6
msgid ""
":strong:`NOTE:` When constructing the ``ciphersalt`` string, you must escape"
" any dollar signs, to avoid them being interpolated by the shell."
msgstr ""
#: ../../../salt/modules/bsd_shadow.pydocstring of
#: salt.modules.bsd_shadow.set_password:9
msgid ""
"``'password'`` is, of course, the password for which you want to generate a "
"hash."
msgstr ""
#: ../../../salt/modules/bsd_shadow.pydocstring of
#: salt.modules.bsd_shadow.set_password:12
msgid ""
"``ciphersalt`` is a combination of a cipher identifier, an optional number "
"of rounds, and the cryptographic salt. The arrangement and format of these "
"fields depends on the cipher and which flavor of BSD you are using. For more"
" information on this, see the manpage for ``crpyt(3)``. On NetBSD, "
"additional information is available in ``passwd.conf(5)``."
msgstr ""
#: ../../../salt/modules/bsd_shadow.pydocstring of
#: salt.modules.bsd_shadow.set_password:18
msgid "It is important to make sure that a supported cipher is used."
msgstr ""

View File

@ -1,97 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.cassandra.rst:6
msgid "salt.modules.cassandra"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of salt.modules.cassandra:1
msgid "Cassandra NoSQL Database Module"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of salt.modules.cassandra:3
msgid "pycassa Cassandra Python adapter"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of salt.modules.cassandra:5
msgid ""
"The location of the 'nodetool' command, host, and thrift port needs to be "
"specified via pillar::"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.column_families:1
msgid ""
"Return existing column families for all keyspaces or just the provided one."
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.column_families:4
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.column_family_definition:4
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.compactionstats:3
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.info:3 ../../../salt/modules/cassandra.pydocstring
#: of salt.modules.cassandra.keyspaces:3
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.netstats:3
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.ring:3 ../../../salt/modules/cassandra.pydocstring
#: of salt.modules.cassandra.tpstats:3
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.version:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.column_family_definition:1
msgid ""
"Return a dictionary of column family definitions for the given "
"keyspace/column_family"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.compactionstats:1
msgid "Return compactionstats info"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.info:1
msgid "Return cassandra node info"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.keyspaces:1
msgid "Return existing keyspaces"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.netstats:1
msgid "Return netstats info"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.ring:1
msgid "Return cassandra ring info"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.tpstats:1
msgid "Return tpstats info"
msgstr ""
#: ../../../salt/modules/cassandra.pydocstring of
#: salt.modules.cassandra.version:1
msgid "Return the cassandra version"
msgstr ""

View File

@ -1,160 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.cmdmod.rst:6
msgid "salt.modules.cmdmod"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod:1
msgid "A module for shelling out"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod:3
msgid ""
"Keep in mind that this module is insecure, in that it can give whomever has "
"access to the master root execution access to all salt minions"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.exec_code:1
msgid ""
"Pass in two strings, the first naming the executable language, aka - "
"python2, python3, ruby, perl, lua, etc. the second string containing the "
"code you wish to execute. The stdout and stderr will be returned"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.exec_code:5
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.has_exec:3
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.retcode:6
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.run:6
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.run_all:6
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.run_stderr:6 ../../../salt/modules/cmdmod.pydocstring
#: of salt.modules.cmdmod.run_stdout:6
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.script:11
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.script_retcode:12
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.which:3
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.which_bin:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.has_exec:1
msgid ""
"Returns true if the executable is available on the minion, false otherwise"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.retcode:1
msgid "Execute a shell command and return the command's return code."
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.retcode:3
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.run:3
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.run_all:3
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.run_stderr:3 ../../../salt/modules/cmdmod.pydocstring
#: of salt.modules.cmdmod.run_stdout:3
msgid ""
"Note that ``env`` represents the environment variables for the command, and "
"should be formatted as a dict, or a YAML string which resolves to a dict."
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.retcode:12
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.run:12
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.run_all:12
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.run_stderr:12 ../../../salt/modules/cmdmod.pydocstring
#: of salt.modules.cmdmod.run_stdout:12
msgid ""
"The template arg can be set to 'jinja' or another supported template engine "
"to render the command arguments before execution. For example:"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.retcode:20
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.run:26
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.run_all:20
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.run_stderr:20 ../../../salt/modules/cmdmod.pydocstring
#: of salt.modules.cmdmod.run_stdout:20
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.script:19
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.script_retcode:18
msgid ""
"A string of standard input can be specified for the command to be run using "
"the ``stdin`` parameter. This can be useful in cases where sensitive "
"information must be read from standard input.:"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.run:1
msgid "Execute the passed command and return the output as a string"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.run:20
msgid "Specify an alternate shell with the shell parameter:"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.run_all:1
msgid "Execute the passed command and return a dict of return data"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.run_stderr:1
msgid "Execute a command and only return the standard error"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.run_stdout:1
msgid "Execute a command, and only return the standard out"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.script:1
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.script_retcode:1
msgid ""
"Download a script from a remote location and execute the script locally. The"
" script can be located on the salt master file server or on an HTTP/FTP "
"server."
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.script:5
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.script_retcode:5
msgid ""
"The script will be executed directly, so it can be written in any available "
"programming language."
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.script:8
msgid ""
"The script can also be formated as a template, the default is jinja. "
"Arguments for the script can be specified as well."
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.script_retcode:8
msgid "The script can also be formated as a template, the default is jinja."
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of
#: salt.modules.cmdmod.script_retcode:10
msgid ""
"Only evaluate the script return code and do not block for terminal output"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.which:1
msgid ""
"Returns the path of an executable available on the minion, None otherwise"
msgstr ""
#: ../../../salt/modules/cmdmod.pydocstring of salt.modules.cmdmod.which_bin:1
msgid "Returns the first command found in a list of commands"
msgstr ""

View File

@ -1,116 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.config.rst:6
msgid "salt.modules.config"
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config:1
msgid "Return config information"
msgstr ""
#: ../../../salt/modules/config.pydocstring of
#: salt.modules.config.backup_mode:1
msgid "Return the backup mode"
msgstr ""
#: ../../../salt/modules/config.pydocstring of
#: salt.modules.config.backup_mode:3 ../../../salt/modules/config.pydocstring
#: of salt.modules.config.dot_vals:4 ../../../salt/modules/config.pydocstring
#: of salt.modules.config.gather_bootstrap_script:4
#: ../../../salt/modules/config.pydocstring of salt.modules.config.get:24
#: ../../../salt/modules/config.pydocstring of
#: salt.modules.config.manage_mode:3 ../../../salt/modules/config.pydocstring
#: of salt.modules.config.merge:6 ../../../salt/modules/config.pydocstring of
#: salt.modules.config.option:3 ../../../salt/modules/config.pydocstring of
#: salt.modules.config.valid_fileproto:4
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.dot_vals:1
msgid ""
"Pass in a configuration value that should be preceded by the module name and"
" a dot, this will return a list of all read key/value pairs"
msgstr ""
#: ../../../salt/modules/config.pydocstring of
#: salt.modules.config.gather_bootstrap_script:1
msgid ""
"Download the salt-bootstrap script, set replace to True to refresh the "
"script if it has already been downloaded"
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.get:3
msgid ""
"Attempt to retrieve the named value from opts, pillar, grains of the master "
"config, if the named value is not available return the passed default. The "
"default return is an empty string."
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.get:7
msgid ""
"The value can also represent a value in a nested dict using a \":\" "
"delimiter for the dict. This means that if a dict looks like this::"
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.get:12
msgid ""
"To retrieve the value associated with the apache key in the pkg dict this "
"key can be passed::"
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.get:17
msgid "This routine traverses these data stores in this order:"
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.get:19
msgid "Local minion config (opts)"
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.get:20
msgid "Minion's grains"
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.get:21
msgid "Minion's pillar"
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.get:22
msgid "Master config"
msgstr ""
#: ../../../salt/modules/config.pydocstring of
#: salt.modules.config.manage_mode:1
msgid "Return a mode value, normalized to a string"
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.merge:1
msgid "Retrieves an option based on key, merging all matches."
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.merge:3
msgid ""
"Same as ``option()`` except that it merges all matches, rather than taking "
"the first match."
msgstr ""
#: ../../../salt/modules/config.pydocstring of salt.modules.config.option:1
msgid "Pass in a generic option and receive the value that will be assigned"
msgstr ""
#: ../../../salt/modules/config.pydocstring of
#: salt.modules.config.valid_fileproto:1
msgid ""
"Returns a boolean value based on whether or not the URI passed has a valid "
"remote file protocol designation"
msgstr ""

View File

@ -1,172 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.cp.rst:6
msgid "salt.modules.cp"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp:1
msgid "Minion side functions for salt-cp"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.cache_dir:1
msgid "Download and cache everything under a directory from the master"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.cache_dir:3
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.cache_file:3
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.cache_files:5
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.cache_local_file:3
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.cache_master:3
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_dir:3
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_file:3
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_file_str:3
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_template:3
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_url:3
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.hash_file:5
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.is_cached:4
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.list_master:3
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.list_master_dirs:3
#: ../../../salt/modules/cp.pydocstring of
#: salt.modules.cp.list_master_symlinks:3 ../../../salt/modules/cp.pydocstring
#: of salt.modules.cp.list_minion:3 ../../../salt/modules/cp.pydocstring of
#: salt.modules.cp.list_states:3 ../../../salt/modules/cp.pydocstring of
#: salt.modules.cp.push:10
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.cache_file:1
msgid "Used to cache a single file in the local salt-master file cache."
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.cache_files:1
msgid ""
"Used to gather many files from the master, the gathered files will be saved "
"in the minion cachedir reflective to the paths retrieved from the master."
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.cache_local_file:1
msgid "Cache a local file on the minion in the localfiles cache"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.cache_master:1
msgid "Retrieve all of the files on the master and cache them locally"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_dir:1
msgid "Used to recursively copy a directory from the salt master"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_dir:9
msgid "get_dir supports the same template and gzip arguments as get_file."
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_file:1
msgid "Used to get a single file from the salt master"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_file:9
msgid ""
"Template rendering can be enabled on both the source and destination file "
"names like so:"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_file:16
msgid ""
"This example would instruct all Salt minions to download the vimrc from a "
"directory with the same name as their os grain and copy it to /etc/vimrc"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_file:19
msgid ""
"For larger files, the cp.get_file module also supports gzip compression. "
"Because gzip is CPU-intensive, this should only be used in scenarios where "
"the compression ratio is very high (e.g. pretty-printed JSON or YAML files)."
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_file:24
msgid ""
"Use the *gzip* named argument to enable it. Valid values are 1..9, where 1 "
"is the lightest compression and 9 the heaviest. 1 uses the least CPU on the"
" master (and minion), 9 uses the most."
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_file_str:1
msgid "Return the contents of a file from a URL"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_template:1
msgid "Render a file as a template before setting it down"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.get_url:1
msgid "Used to get a single file from a URL."
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.hash_file:1
msgid ""
"Return the hash of a file, to get the hash of a file on the salt master file"
" server prepend the path with salt://<file on server> otherwise, prepend the"
" file with / for a local file."
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.is_cached:1
msgid ""
"Return a boolean if the given path on the master has been cached on the "
"minion"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.list_master:1
msgid "List all of the files stored on the master"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.list_master_dirs:1
msgid "List all of the directories stored on the master"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of
#: salt.modules.cp.list_master_symlinks:1
msgid "List all of the symlinks stored on the master"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.list_minion:1
msgid "List all of the files cached on the minion"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.list_states:1
msgid "List all of the available state modules in an environment"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.push:1
msgid ""
"Push a file from the minion up to the master, the file will be saved to the "
"salt master in the master's minion files cachedir (defaults to "
"``/var/cache/salt/master/minions/minion-id/files``)"
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.push:5
msgid ""
"Since this feature allows a minion to push a file up to the master server it"
" is disabled by default for security purposes. To enable, set ``file_recv`` "
"to ``True`` in the master configuration file, and restart the master."
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.recv:1
msgid "Used with salt-cp, pass the files dict, and the destination."
msgstr ""
#: ../../../salt/modules/cp.pydocstring of salt.modules.cp.recv:3
msgid ""
"This function receives small fast copy files from the master via salt-cp. It"
" does not work via the CLI."
msgstr ""

View File

@ -1,79 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.cron.rst:6
msgid "salt.modules.cron"
msgstr ""
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron:1
msgid "Work with cron"
msgstr ""
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.list_tab:1
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.ls:1
msgid "Return the contents of the specified user's crontab"
msgstr ""
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.list_tab:3
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.ls:3
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.raw_cron:3
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.rm:4
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.rm_env:3
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.rm_job:4
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.set_env:3
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.set_job:3
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.set_special:3
#: ../../../salt/modules/cron.pydocstring of
#: salt.modules.cron.write_cron_file:3 ../../../salt/modules/cron.pydocstring
#: of salt.modules.cron.write_cron_file_verbose:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.raw_cron:1
msgid "Return the contents of the user's crontab"
msgstr ""
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.rm:1
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.rm_job:1
msgid ""
"Remove a cron job for a specified user. If any of the day/time params are "
"specified, the job will only be removed if the specified params match."
msgstr ""
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.rm_env:1
msgid "Remove cron environment variable for a specified user."
msgstr ""
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.set_env:1
msgid "Set up an environment variable in the crontab."
msgstr ""
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.set_job:1
msgid "Sets a cron job up for a specified user."
msgstr ""
#: ../../../salt/modules/cron.pydocstring of salt.modules.cron.set_special:1
msgid "Set up a special command in the crontab."
msgstr ""
#: ../../../salt/modules/cron.pydocstring of
#: salt.modules.cron.write_cron_file:1
msgid "Writes the contents of a file to a user's crontab"
msgstr ""
#: ../../../salt/modules/cron.pydocstring of
#: salt.modules.cron.write_cron_file_verbose:1
msgid ""
"Writes the contents of a file to a user's crontab and return error message "
"on error"
msgstr ""

View File

@ -1,97 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.daemontools.rst:6
msgid "salt.modules.daemontools"
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of salt.modules.daemontools:1
msgid ""
"daemontools service module. This module will create daemontools type service"
" watcher."
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of salt.modules.daemontools:4
msgid ""
"This module is compatible with the :mod:`service <salt.states.service>` "
"states, so it can be used to maintain services using the ``provider`` "
"argument:"
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.available:1
msgid ""
"Returns ``True`` if the specified service is available, otherwise returns "
"``False``."
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.available:4
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.full_restart:3
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.get_all:3
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.reload_:3
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.restart:3
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.start:3
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.status:3
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.stop:3
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.term:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.full_restart:1
msgid "Calls daemontools.restart() function"
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.get_all:1
msgid "Return a list of all available services"
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.reload_:1
msgid "Wrapper for term()"
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.restart:1
msgid "Restart service via daemontools. This will stop/start service"
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.start:1
msgid "Starts service via daemontools"
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.status:1
msgid "Return the status for a service via daemontools, return pid if running"
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.stop:1
msgid "Stops service via daemontools"
msgstr ""
#: ../../../salt/modules/daemontools.pydocstring of
#: salt.modules.daemontools.term:1
msgid "Send a TERM to service via daemontools"
msgstr ""

View File

@ -1,52 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.darwin_sysctl.rst:6
msgid "salt.modules.darwin_sysctl"
msgstr ""
#: ../../../salt/modules/darwin_sysctl.pydocstring of
#: salt.modules.darwin_sysctl:1
msgid "Module for viewing and modifying sysctl parameters"
msgstr ""
#: ../../../salt/modules/darwin_sysctl.pydocstring of
#: salt.modules.darwin_sysctl.assign:1
msgid "Assign a single sysctl parameter for this minion"
msgstr ""
#: ../../../salt/modules/darwin_sysctl.pydocstring of
#: salt.modules.darwin_sysctl.assign:3
#: ../../../salt/modules/darwin_sysctl.pydocstring of
#: salt.modules.darwin_sysctl.get:3
#: ../../../salt/modules/darwin_sysctl.pydocstring of
#: salt.modules.darwin_sysctl.persist:3
#: ../../../salt/modules/darwin_sysctl.pydocstring of
#: salt.modules.darwin_sysctl.show:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/darwin_sysctl.pydocstring of
#: salt.modules.darwin_sysctl.get:1
msgid "Return a single sysctl parameter for this minion"
msgstr ""
#: ../../../salt/modules/darwin_sysctl.pydocstring of
#: salt.modules.darwin_sysctl.persist:1
msgid "Assign and persist a simple sysctl parameter for this minion"
msgstr ""
#: ../../../salt/modules/darwin_sysctl.pydocstring of
#: salt.modules.darwin_sysctl.show:1
msgid "Return a list of sysctl parameters for this minion"
msgstr ""

View File

@ -1,62 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.data.rst:6
msgid "salt.modules.data"
msgstr ""
#: ../../../salt/modules/data.pydocstring of salt.modules.data:1
msgid ""
"Manage a local persistent data structure that can hold any arbitrary data "
"specific to the minion"
msgstr ""
#: ../../../salt/modules/data.pydocstring of salt.modules.data.cas:1
msgid "Check and set a value in the minion datastore"
msgstr ""
#: ../../../salt/modules/data.pydocstring of salt.modules.data.cas:3
#: ../../../salt/modules/data.pydocstring of salt.modules.data.clear:4
#: ../../../salt/modules/data.pydocstring of salt.modules.data.dump:3
#: ../../../salt/modules/data.pydocstring of salt.modules.data.getval:3
#: ../../../salt/modules/data.pydocstring of salt.modules.data.getvals:3
#: ../../../salt/modules/data.pydocstring of salt.modules.data.load:3
#: ../../../salt/modules/data.pydocstring of salt.modules.data.update:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/data.pydocstring of salt.modules.data.clear:1
msgid ""
"Clear out all of the data in the minion datastore, this function is "
"destructive!"
msgstr ""
#: ../../../salt/modules/data.pydocstring of salt.modules.data.dump:1
msgid "Replace the entire datastore with a passed data structure"
msgstr ""
#: ../../../salt/modules/data.pydocstring of salt.modules.data.getval:1
msgid "Get a value from the minion datastore"
msgstr ""
#: ../../../salt/modules/data.pydocstring of salt.modules.data.getvals:1
msgid "Get values from the minion datastore"
msgstr ""
#: ../../../salt/modules/data.pydocstring of salt.modules.data.load:1
msgid "Return all of the data in the minion datastore"
msgstr ""
#: ../../../salt/modules/data.pydocstring of salt.modules.data.update:1
msgid "Update a key with a value in the minion datastore"
msgstr ""

View File

@ -1,50 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.ddns.rst:6
msgid "salt.modules.ddns"
msgstr ""
#: ../../../salt/modules/ddns.pydocstring of salt.modules.ddns:1
msgid "Support for RFC 2136 dynamic DNS updates. Requires dnspython module."
msgstr ""
#: ../../../salt/modules/ddns.pydocstring of salt.modules.ddns.add_host:1
msgid "Add, replace, or update the A and PTR (reverse) records for a host."
msgstr ""
#: ../../../salt/modules/ddns.pydocstring of salt.modules.ddns.add_host:3
#: ../../../salt/modules/ddns.pydocstring of salt.modules.ddns.delete:3
#: ../../../salt/modules/ddns.pydocstring of salt.modules.ddns.delete_host:5
#: ../../../salt/modules/ddns.pydocstring of salt.modules.ddns.update:6
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/ddns.pydocstring of salt.modules.ddns.delete:1
msgid "Delete a DNS record."
msgstr ""
#: ../../../salt/modules/ddns.pydocstring of salt.modules.ddns.delete_host:1
msgid "Delete the forward and reverse records for a host."
msgstr ""
#: ../../../salt/modules/ddns.pydocstring of salt.modules.ddns.delete_host:3
msgid "Returns true if any records are deleted."
msgstr ""
#: ../../../salt/modules/ddns.pydocstring of salt.modules.ddns.update:1
msgid ""
"Add, replace, or update a DNS record. nameserver must be an IP address and "
"the minion running this module must have update privileges on that server. "
"If replace is true, first deletes all records for this name and type."
msgstr ""

View File

@ -1,56 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.debconfmod.rst:6
msgid "salt.modules.debconfmod"
msgstr ""
#: ../../../salt/modules/debconfmod.pydocstring of salt.modules.debconfmod:1
msgid "Support for Debconf"
msgstr ""
#: ../../../salt/modules/debconfmod.pydocstring of
#: salt.modules.debconfmod.get_selections:1
msgid ""
"Answers to debconf questions for all packages in the following format::"
msgstr ""
#: ../../../salt/modules/debconfmod.pydocstring of
#: salt.modules.debconfmod.get_selections:5
#: ../../../salt/modules/debconfmod.pydocstring of
#: salt.modules.debconfmod.set_:3 ../../../salt/modules/debconfmod.pydocstring
#: of salt.modules.debconfmod.set_file:3
#: ../../../salt/modules/debconfmod.pydocstring of
#: salt.modules.debconfmod.show:7
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/debconfmod.pydocstring of
#: salt.modules.debconfmod.set_:1
msgid "Set answers to debconf questions for a package."
msgstr ""
#: ../../../salt/modules/debconfmod.pydocstring of
#: salt.modules.debconfmod.set_file:1
msgid "Set answers to debconf questions from a file."
msgstr ""
#: ../../../salt/modules/debconfmod.pydocstring of
#: salt.modules.debconfmod.show:1
msgid "Answers to debconf questions for a package in the following format::"
msgstr ""
#: ../../../salt/modules/debconfmod.pydocstring of
#: salt.modules.debconfmod.show:5
msgid "If debconf doesn't know about a package, we return None."
msgstr ""

View File

@ -1,124 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.debian_service.rst:6
msgid "salt.modules.debian_service"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service:1
msgid ""
"Service support for Debian systems (uses update-rc.d and /sbin/service)"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.available:1
msgid ""
"Returns ``True`` if the specified service is available, otherwise returns "
"``False``."
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.available:4
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.disable:3
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.disabled:3
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.enable:3
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.enabled:3
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.force_reload:3
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.get_all:3
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.get_disabled:3
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.get_enabled:3
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.reload_:3
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.restart:3
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.start:3
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.status:4
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.stop:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.disable:1
msgid "Disable the named service to start at boot"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.disabled:1
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.enabled:1
msgid "Return True if the named service is enabled, false otherwise"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.enable:1
msgid "Enable the named service to start at boot"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.force_reload:1
msgid "Force-reload the named service"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.get_all:1
msgid "Return all available boot services"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.get_disabled:1
msgid "Return a set of services that are installed but disabled"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.get_enabled:1
msgid "Return a list of service that are enabled on boot"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.reload_:1
msgid "Reload the named service"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.restart:1
msgid "Restart the named service"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.start:1
msgid "Start the specified service"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.status:1
msgid ""
"Return the status for a service, pass a signature to use to find the service"
" via ps"
msgstr ""
#: ../../../salt/modules/debian_service.pydocstring of
#: salt.modules.debian_service.stop:1
msgid "Stop the specified service"
msgstr ""

View File

@ -1,75 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.dig.rst:6
msgid "salt.modules.dig"
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig:1
msgid "Compendium of generic DNS utilities"
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.A:1
msgid "Return the A record for ``host``."
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.A:3
msgid "Always returns a list."
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.A:5
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.MX:10
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.NS:5
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.SPF:7
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.check_ip:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.MX:1
msgid "Return a list of lists for the MX of ``domain``."
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.MX:3
msgid "If the ``resolve`` argument is True, resolve IPs for the servers."
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.MX:5
msgid ""
"It's limited to one IP, because although in practice it's very rarely a "
"round robin, it is an acceptable configuration and pulling just one IP lets "
"the data be similar to the non-resolved version. If you think an MX has "
"multiple IPs, don't use the resolver here, resolve them in a separate step."
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.NS:1
msgid "Return a list of IPs of the nameservers for ``domain``"
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.NS:3
msgid "If ``resolve`` is False, don't resolve names."
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.SPF:1
msgid "Return the allowed IPv4 ranges in the SPF record for ``domain``."
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.SPF:3
msgid ""
"If record is ``SPF`` and the SPF record is empty, the TXT record will be "
"searched automatically. If you know the domain uses TXT and not SPF, "
"specifying that will save a lookup."
msgstr ""
#: ../../../salt/modules/dig.pydocstring of salt.modules.dig.check_ip:1
msgid "Check that string x is a valid IP"
msgstr ""

View File

@ -1,33 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.disk.rst:6
msgid "salt.modules.disk"
msgstr ""
#: ../../../salt/modules/disk.pydocstring of salt.modules.disk:1
msgid "Module for gathering disk information"
msgstr ""
#: ../../../salt/modules/disk.pydocstring of salt.modules.disk.inodeusage:1
msgid "Return inode usage information for volumes mounted on this minion"
msgstr ""
#: ../../../salt/modules/disk.pydocstring of salt.modules.disk.inodeusage:3
#: ../../../salt/modules/disk.pydocstring of salt.modules.disk.usage:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/disk.pydocstring of salt.modules.disk.usage:1
msgid "Return usage information for volumes mounted on this minion"
msgstr ""

View File

@ -1,81 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.djangomod.rst:6
msgid "salt.modules.djangomod"
msgstr ""
#: ../../../salt/modules/djangomod.pydocstring of salt.modules.djangomod:1
msgid "Manage Django sites"
msgstr ""
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.collectstatic:1
msgid ""
"Collect static files from each of your applications into a single location "
"that can easily be served in production."
msgstr ""
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.collectstatic:4
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.command:3
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.createsuperuser:5
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.loaddata:6
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.syncdb:7
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.command:1
msgid "Run arbitrary django management command"
msgstr ""
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.createsuperuser:1
msgid ""
"Create a super user for the database. This function defaults to use the "
"``--noinput`` flag which prevents the creation of a password for the "
"superuser."
msgstr ""
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.loaddata:1
msgid "Load fixture data"
msgstr ""
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.loaddata:4
msgid "Fixtures:"
msgstr ""
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.loaddata:4
msgid "comma separated list of fixtures to load"
msgstr ""
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.syncdb:1
msgid "Run syncdb"
msgstr ""
#: ../../../salt/modules/djangomod.pydocstring of
#: salt.modules.djangomod.syncdb:3
msgid ""
"Execute the Django-Admin syncdb command, if South is available on the minion"
" the ``migrate`` option can be passed as ``True`` calling the migrations to "
"run after the syncdb completes"
msgstr ""

View File

@ -1,65 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.dnsmasq.rst:6
msgid "salt.modules.dnsmasq"
msgstr ""
#: ../../../salt/modules/dnsmasq.pydocstring of salt.modules.dnsmasq:1
msgid "Module for managing dnqmasq"
msgstr ""
#: ../../../salt/modules/dnsmasq.pydocstring of
#: salt.modules.dnsmasq.fullversion:1
msgid "Shows installed version of dnsmasq, and compile options"
msgstr ""
#: ../../../salt/modules/dnsmasq.pydocstring of
#: salt.modules.dnsmasq.fullversion:3
#: ../../../salt/modules/dnsmasq.pydocstring of salt.modules.dnsmasq.version:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/dnsmasq.pydocstring of
#: salt.modules.dnsmasq.get_config:1
msgid "Dumps all options from the config file"
msgstr ""
#: ../../../salt/modules/dnsmasq.pydocstring of
#: salt.modules.dnsmasq.get_config:3 ../../../salt/modules/dnsmasq.pydocstring
#: of salt.modules.dnsmasq.set_config:12
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/dnsmasq.pydocstring of
#: salt.modules.dnsmasq.set_config:1
msgid ""
"Sets a value or a set of values in the specified file. By default, if conf-"
"dir is configured in this file, salt will attempt to set the option in any "
"file inside the conf-dir where it has already been enabled. If it does not "
"find it inside any files, it will append it to the main config file. Setting"
" follow to False will turn off this behavior."
msgstr ""
#: ../../../salt/modules/dnsmasq.pydocstring of
#: salt.modules.dnsmasq.set_config:7
msgid ""
"If a config option currently appears multiple times (such as dhcp-host, "
"which is specified at least once per host), the new option will be added to "
"the end of the main config file (and not to any includes). If you need an "
"option added to a specific include file, specify it as the config_file."
msgstr ""
#: ../../../salt/modules/dnsmasq.pydocstring of salt.modules.dnsmasq.version:1
msgid "Shows installed version of dnsmasq"
msgstr ""

View File

@ -1,110 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.dnsutil.rst:6
msgid "salt.modules.dnsutil"
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil:1
msgid "Compendium of generic DNS utilities"
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.A:1
msgid "Return the A record for 'host'."
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.A:3
msgid "Always returns a list."
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.A:5
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.MX:10
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.NS:5
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.SPF:7
#: ../../../salt/modules/dnsutil.pydocstring of
#: salt.modules.dnsutil.check_ip:3 ../../../salt/modules/dnsutil.pydocstring
#: of salt.modules.dnsutil.hosts_append:3
#: ../../../salt/modules/dnsutil.pydocstring of
#: salt.modules.dnsutil.parse_hosts:3
#: ../../../salt/modules/dnsutil.pydocstring of
#: salt.modules.dnsutil.parse_zone:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.MX:1
msgid "Return a list of lists for the MX of ``domain``."
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.MX:3
msgid "If the 'resolve' argument is True, resolve IPs for the servers."
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.MX:5
msgid ""
"It's limited to one IP, because although in practice it's very rarely a "
"round robin, it is an acceptable configuration and pulling just one IP lets "
"the data be similar to the non-resolved version. If you think an MX has "
"multiple IPs, don't use the resolver here, resolve them in a separate step."
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.NS:1
msgid "Return a list of IPs of the nameservers for ``domain``"
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.NS:3
msgid "If 'resolve' is False, don't resolve names."
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.SPF:1
msgid "Return the allowed IPv4 ranges in the SPF record for ``domain``."
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of salt.modules.dnsutil.SPF:3
msgid ""
"If record is ``SPF`` and the SPF record is empty, the TXT record will be "
"searched automatically. If you know the domain uses TXT and not SPF, "
"specifying that will save a lookup."
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of
#: salt.modules.dnsutil.check_ip:1
msgid "Check that string ip_addr is a valid IP"
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of
#: salt.modules.dnsutil.hosts_append:1
msgid "Append a single line to the /etc/hosts file."
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of
#: salt.modules.dnsutil.hosts_remove:1
msgid ""
"Remove a host from the /etc/hosts file. If doing so will leave a line "
"containing only an IP address, then the line will be deleted. This function "
"will leave comments and blank lines intact."
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of
#: salt.modules.dnsutil.hosts_remove:5
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of
#: salt.modules.dnsutil.parse_hosts:1
msgid "Parse /etc/hosts file."
msgstr ""
#: ../../../salt/modules/dnsutil.pydocstring of
#: salt.modules.dnsutil.parse_zone:1
msgid "Parses a zone file. Can be passed raw zone data on the API level."
msgstr ""

View File

@ -1,51 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.dpkg.rst:6
msgid "salt.modules.dpkg"
msgstr ""
#: ../../../salt/modules/dpkg.pydocstring of salt.modules.dpkg:1
msgid "Support for DEB packages"
msgstr ""
#: ../../../salt/modules/dpkg.pydocstring of salt.modules.dpkg.file_dict:1
msgid ""
"List the files that belong to a package, grouped by package. Not specifying "
"any packages will return a list of _every_ file on the system's package "
"database (not generally recommended)."
msgstr ""
#: ../../../salt/modules/dpkg.pydocstring of salt.modules.dpkg.file_dict:5
#: ../../../salt/modules/dpkg.pydocstring of salt.modules.dpkg.file_list:5
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/dpkg.pydocstring of salt.modules.dpkg.file_list:1
msgid ""
"List the files that belong to a package. Not specifying any packages will "
"return a list of _every_ file on the system's package database (not "
"generally recommended)."
msgstr ""
#: ../../../salt/modules/dpkg.pydocstring of salt.modules.dpkg.list_pkgs:1
msgid "List the packages currently installed in a dict::"
msgstr ""
#: ../../../salt/modules/dpkg.pydocstring of salt.modules.dpkg.list_pkgs:5
msgid "External dependencies::"
msgstr ""
#: ../../../salt/modules/dpkg.pydocstring of salt.modules.dpkg.list_pkgs:10
msgid "CLI Example:"
msgstr ""

View File

@ -1,361 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.ebuild.rst:6
msgid "salt.modules.ebuild"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild:1
msgid "Support for Portage"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild:3
msgid "portage Python adapter"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild:5
msgid ""
"For now all package names *MUST* include the package category, i.e. "
"``'vim'`` will not work, ``'app-editors/vim'`` will."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.check_db:3
msgid ""
"Returns a dict containing the following information for each specified "
"package:"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.check_db:6
msgid ""
"A key ``found``, which will be a boolean value denoting if a match was found"
" in the package database."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.check_db:8
msgid ""
"If ``found`` is ``False``, then a second key called ``suggestions`` will be "
"present, which will contain a list of possible matches. This list will be "
"empty if the package name was specified in ``category/pkgname`` format, "
"since the suggestions are only intended to disambiguate ambiguous package "
"names (ones submitted without a category)."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.check_db:14
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.check_extra_requirements:1
msgid "Check if the installed package already has the given requirements."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.check_extra_requirements:3
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.depclean:20
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.ex_mod_init:3 ../../../salt/modules/ebuild.pydocstring
#: of salt.modules.ebuild.install:11 ../../../salt/modules/ebuild.pydocstring
#: of salt.modules.ebuild.install:29 ../../../salt/modules/ebuild.pydocstring
#: of salt.modules.ebuild.install:41 ../../../salt/modules/ebuild.pydocstring
#: of salt.modules.ebuild.install:51 ../../../salt/modules/ebuild.pydocstring
#: of salt.modules.ebuild.install:64 ../../../salt/modules/ebuild.pydocstring
#: of salt.modules.ebuild.install:75 ../../../salt/modules/ebuild.pydocstring
#: of salt.modules.ebuild.latest_version:8
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.list_pkgs:5
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.list_upgrades:3
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:24
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.refresh_db:3 ../../../salt/modules/ebuild.pydocstring
#: of salt.modules.ebuild.remove:22 ../../../salt/modules/ebuild.pydocstring
#: of salt.modules.ebuild.update:16 ../../../salt/modules/ebuild.pydocstring
#: of salt.modules.ebuild.upgrade:8 ../../../salt/modules/ebuild.pydocstring
#: of salt.modules.ebuild.upgrade_available:3
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.version:5
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.version_clean:3
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.version_cmp:5
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.depclean:1
msgid ""
"Portage has a function to remove unused dependencies. If a package is "
"provided, it will only removed the package if no other package depends on "
"it."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.depclean:6
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:15
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:5
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.remove:4
msgid "name"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.depclean:6
msgid "The name of the package to be cleaned."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.depclean:9
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:33
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:8
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.remove:7
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.update:5
msgid "slot"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.depclean:9
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.depclean:12
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:11
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.remove:7
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.remove:10
msgid "Restrict the remove to a specific slot. Ignored if ``name`` is None."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.depclean:12
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:45
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:11
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.remove:10
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.update:9
msgid "fromrepo"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.depclean:16
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:68
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:17
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.remove:16
msgid "pkgs"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.depclean:15
msgid ""
"Clean multiple packages. ``slot`` and ``fromrepo`` arguments are ignored if "
"this argument is present. Must be passed as a python list."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.depclean:18
msgid "Return a list containing the removed packages:"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.ex_mod_init:1
msgid ""
"Enforce a nice tree structure for /etc/portage/package.* configuration "
"files."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:1
msgid ""
"Install the passed package(s), add refresh=True to sync the portage tree "
"before package is installed."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:5
msgid ""
"The name of the package to be installed. Note that this parameter is ignored"
" if either \"pkgs\" or \"sources\" is passed. Additionally, please note that"
" this option can only be used to emerge a package from the portage tree. To "
"install a tbz2 package manually, use the \"sources\" option described below."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:18
msgid "refresh"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:18
msgid "Whether or not to sync the portage tree before installing."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:22
msgid "version"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:21
msgid ""
"Install a specific version of the package, e.g. 1.0.9-r1. Ignored if "
"\"pkgs\" or \"sources\" is passed."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:25
msgid ""
"Similar to version, but specifies a valid slot to be installed. It will "
"install the latest available version in the specified slot. Ignored if "
"\"pkgs\" or \"sources\" or \"version\" is passed."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:36
msgid ""
"Similar to slot, but specifies the repository from the package will be "
"installed. It will install the latest available version in the specified "
"repository. Ignored if \"pkgs\" or \"sources\" or \"version\" is passed."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:56
msgid "uses"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:48
msgid ""
"Similar to slot, but specifies a list of use flag. Ignored if \"pkgs\" or "
"\"sources\" or \"version\" is passed."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:58
msgid "Multiple Package Installation Options:"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:61
msgid ""
"A list of packages to install from the portage tree. Must be passed as a "
"python list."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:80
msgid "sources"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:71
msgid ""
"A list of tbz2 packages to install. Must be passed as a list of dicts, with "
"the keys being package names, and the values being the source URI or local "
"path to the package."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.install:82
msgid "Returns a dict containing the new package names and versions::"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.latest_version:1
msgid ""
"Return the latest version of the named package available for upgrade or "
"installation. If more than one package name is specified, a dict of "
"name/version pairs is returned."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.latest_version:5
msgid ""
"If the latest version of a given package is already installed, an empty "
"string will be returned for that package."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.list_pkgs:1
msgid "List the packages currently installed in a dict::"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.list_upgrades:1
msgid "List all available package upgrades."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.porttree_matches:1
msgid ""
"Returns a list containing the matches for a given package name from the "
"portage tree. Note that the specific version of the package will not be "
"provided for packages that have several versions in the portage tree, but "
"rather the name of the package (i.e. \"dev-python/paramiko\")."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:1
msgid ""
"Portage does not have a purge, this function calls remove followed by "
"depclean to emulate a purge process"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:5
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.remove:4
msgid "The name of the package to be deleted."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:8
msgid "Restrict the remove to a specific slot. Ignored if name is None."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:13
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.remove:12
msgid "Multiple Package Options:"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:16
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.remove:15
msgid ""
"Uninstall multiple packages. ``slot`` and ``fromrepo`` arguments are ignored"
" if this argument is present. Must be passed as a python list."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.purge:22
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.remove:20
msgid "Returns a dict containing the changes."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.refresh_db:1
msgid "Updates the portage tree (emerge --sync). Uses eix-sync if available."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.remove:1
msgid "Remove packages via emerge --unmerge."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.update:1
msgid "Updates the passed package (emerge --update package)"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.update:4
msgid ""
"Restrict the update to a particular slot. It will update to the latest "
"version within the slot."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.update:8
msgid ""
"Restrict the update to a particular repository. It will update to the latest"
" version within the repository."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.update:11
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.upgrade:3
msgid "Return a dict containing the new package names and versions::"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.upgrade:1
msgid "Run a full system upgrade (emerge --update world)"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.upgrade_available:1
msgid "Check whether or not an upgrade is available for a given package"
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of salt.modules.ebuild.version:1
msgid ""
"Returns a string representing the package version or an empty string if not "
"installed. If more than one package name is specified, a dict of "
"name/version pairs is returned."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.version_clean:1
msgid "Clean the version string removing extra data."
msgstr ""
#: ../../../salt/modules/ebuild.pydocstring of
#: salt.modules.ebuild.version_cmp:1
msgid ""
"Do a cmp-style comparison on two packages. Return -1 if pkg1 < pkg2, 0 if "
"pkg1 == pkg2, and 1 if pkg1 > pkg2. Return None if there was a problem "
"making the comparison."
msgstr ""

View File

@ -1,33 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.eix.rst:6
msgid "salt.modules.eix"
msgstr ""
#: ../../../salt/modules/eix.pydocstring of salt.modules.eix:1
msgid "Support for Eix"
msgstr ""
#: ../../../salt/modules/eix.pydocstring of salt.modules.eix.sync:1
msgid "Sync portage/overlay trees and update the eix database"
msgstr ""
#: ../../../salt/modules/eix.pydocstring of salt.modules.eix.sync:3
#: ../../../salt/modules/eix.pydocstring of salt.modules.eix.update:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/eix.pydocstring of salt.modules.eix.update:1
msgid "Update the eix database"
msgstr ""

View File

@ -1,60 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.eselect.rst:6
msgid "salt.modules.eselect"
msgstr ""
#: ../../../salt/modules/eselect.pydocstring of salt.modules.eselect:1
msgid "Support for eselect, Gentoo's configuration and management tool."
msgstr ""
#: ../../../salt/modules/eselect.pydocstring of
#: salt.modules.eselect.exec_action:1
msgid "Execute an arbitrary action on a module."
msgstr ""
#: ../../../salt/modules/eselect.pydocstring of
#: salt.modules.eselect.exec_action:3
#: ../../../salt/modules/eselect.pydocstring of
#: salt.modules.eselect.get_current_target:3
#: ../../../salt/modules/eselect.pydocstring of
#: salt.modules.eselect.get_modules:3
#: ../../../salt/modules/eselect.pydocstring of
#: salt.modules.eselect.get_target_list:3
#: ../../../salt/modules/eselect.pydocstring of
#: salt.modules.eselect.set_target:4
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/eselect.pydocstring of
#: salt.modules.eselect.get_current_target:1
msgid "Get the currently selected target for the given module."
msgstr ""
#: ../../../salt/modules/eselect.pydocstring of
#: salt.modules.eselect.get_modules:1
msgid "Get available modules list."
msgstr ""
#: ../../../salt/modules/eselect.pydocstring of
#: salt.modules.eselect.get_target_list:1
msgid "Get available target for the given module."
msgstr ""
#: ../../../salt/modules/eselect.pydocstring of
#: salt.modules.eselect.set_target:1
msgid ""
"Set the target for the given module. Target can be specified by index or "
"name."
msgstr ""

View File

@ -1,35 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.event.rst:6
msgid "salt.modules.event"
msgstr ""
#: ../../../salt/modules/event.pydocstring of salt.modules.event:1
msgid ""
"Use the :doc:`Salt Event System </topics/event/index>` to fire events from "
"the master to the minion and vice-versa."
msgstr ""
#: ../../../salt/modules/event.pydocstring of salt.modules.event.fire:1
msgid "Fire an event on the local minion event bus"
msgstr ""
#: ../../../salt/modules/event.pydocstring of salt.modules.event.fire:3
#: ../../../salt/modules/event.pydocstring of salt.modules.event.fire_master:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/event.pydocstring of salt.modules.event.fire_master:1
msgid "Fire an event off up to the master server"
msgstr ""

View File

@ -1,60 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.extfs.rst:6
msgid "salt.modules.extfs"
msgstr ""
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs:1
msgid "Module for managing ext2/3/4 file systems"
msgstr ""
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.attributes:1
msgid "Return attributes from dumpe2fs for a specified device"
msgstr ""
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.attributes:3
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.blocks:3
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.dump:3
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.mkfs:3
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.tune:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.blocks:1
msgid "Return block and inode info from dumpe2fs for a specified device"
msgstr ""
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.dump:1
msgid "Return all contents of dumpe2fs for a specified device"
msgstr ""
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.mkfs:1
msgid "Create a file system on the specified device"
msgstr ""
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.mkfs:9
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.tune:9
msgid "Valid options are::"
msgstr ""
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.mkfs:38
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.tune:32
msgid ""
"See the ``mke2fs(8)`` manpage for a more complete description of these "
"options."
msgstr ""
#: ../../../salt/modules/extfs.pydocstring of salt.modules.extfs.tune:1
msgid "Set attributes for the specified device (using tune2fs)"
msgstr ""

View File

@ -1,804 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.file.rst:6
msgid "salt.modules.file"
msgstr ""
#: ../../docstring of salt.modules.file:1
msgid ""
"Manage information about regular files, directories, and special files on "
"the minion, set/read user, group, mode, and data"
msgstr ""
#: ../../docstring of salt.modules.file.append:3
msgid "Append text to the end of a file"
msgstr ""
#: ../../docstring of salt.modules.file.append:5 ../../docstring of
#: salt.modules.file.check_file_meta:3 ../../docstring of
#: salt.modules.file.check_hash:12 ../../docstring of
#: salt.modules.file.check_managed:3 ../../docstring of
#: salt.modules.file.check_perms:3 ../../docstring of
#: salt.modules.file.chgrp:3 ../../docstring of salt.modules.file.chown:3
#: ../../docstring of salt.modules.file.comment:25 ../../docstring of
#: salt.modules.file.contains:6 ../../docstring of
#: salt.modules.file.contains_glob:6 ../../docstring of
#: salt.modules.file.contains_regex:10 ../../docstring of
#: salt.modules.file.contains_regex_multiline:10 ../../docstring of
#: salt.modules.file.copy:3 ../../docstring of
#: salt.modules.file.delete_backup:13 ../../docstring of
#: salt.modules.file.directory_exists:3 ../../docstring of
#: salt.modules.file.file_exists:3 ../../docstring of
#: salt.modules.file.get_devmm:3 ../../docstring of
#: salt.modules.file.get_diff:3 ../../docstring of salt.modules.file.get_gid:3
#: ../../docstring of salt.modules.file.get_group:3 ../../docstring of
#: salt.modules.file.get_hash:9 ../../docstring of
#: salt.modules.file.get_managed:3 ../../docstring of
#: salt.modules.file.get_mode:3 ../../docstring of
#: salt.modules.file.get_selinux_context:3 ../../docstring of
#: salt.modules.file.get_sum:4 ../../docstring of salt.modules.file.get_uid:3
#: ../../docstring of salt.modules.file.get_user:3 ../../docstring of
#: salt.modules.file.gid_to_group:3 ../../docstring of
#: salt.modules.file.group_to_gid:3 ../../docstring of
#: salt.modules.file.is_blkdev:3 ../../docstring of
#: salt.modules.file.is_chrdev:3 ../../docstring of
#: salt.modules.file.is_fifo:3 ../../docstring of
#: salt.modules.file.list_backups:12 ../../docstring of
#: salt.modules.file.makedirs:3 ../../docstring of
#: salt.modules.file.makedirs_perms:4 ../../docstring of
#: salt.modules.file.manage_file:4 ../../docstring of
#: salt.modules.file.mkdir:3 ../../docstring of
#: salt.modules.file.mknod_blkdev:3 ../../docstring of
#: salt.modules.file.mknod_chrdev:3 ../../docstring of
#: salt.modules.file.mknod_fifo:3 ../../docstring of
#: salt.modules.file.patch:16 ../../docstring of salt.modules.file.psed:39
#: ../../docstring of salt.modules.file.remove:3 ../../docstring of
#: salt.modules.file.rename:3 ../../docstring of salt.modules.file.replace:35
#: ../../docstring of salt.modules.file.restore_backup:13 ../../docstring of
#: salt.modules.file.restorecon:3 ../../docstring of
#: salt.modules.file.search:7 ../../docstring of salt.modules.file.sed:35
#: ../../docstring of salt.modules.file.sed_contains:9 ../../docstring of
#: salt.modules.file.set_mode:3 ../../docstring of
#: salt.modules.file.set_selinux_context:3 ../../docstring of
#: salt.modules.file.source_list:3 ../../docstring of
#: salt.modules.file.stats:3 ../../docstring of salt.modules.file.symlink:3
#: ../../docstring of salt.modules.file.touch:11 ../../docstring of
#: salt.modules.file.uid_to_user:3 ../../docstring of
#: salt.modules.file.uncomment:20 ../../docstring of
#: salt.modules.file.user_to_uid:3
msgid "CLI Example:"
msgstr ""
#: ../../docstring of salt.modules.file.check_file_meta:1
msgid "Check for the changes in the file metadata."
msgstr ""
#: ../../docstring of salt.modules.file.check_hash:1
msgid "Check if a file matches the given hash string"
msgstr ""
#: ../../docstring of salt.modules.file.check_hash:3
msgid ""
"Returns true if the hash matched, otherwise false. Raises ValueError if the "
"hash was not formatted correctly."
msgstr ""
#: ../../docstring of salt.modules.file.check_hash:6 ../../docstring of
#: salt.modules.file.comment:6 ../../docstring of
#: salt.modules.file.delete_backup:7 ../../docstring of
#: salt.modules.file.list_backups:7 ../../docstring of
#: salt.modules.file.psed:10 ../../docstring of
#: salt.modules.file.restore_backup:7 ../../docstring of
#: salt.modules.file.sed:10 ../../docstring of salt.modules.file.uncomment:6
msgid "path"
msgstr ""
#: ../../docstring of salt.modules.file.check_hash:7
msgid "A file path"
msgstr ""
#: ../../docstring of salt.modules.file.check_hash:10
msgid "hash"
msgstr ""
#: ../../docstring of salt.modules.file.check_hash:9
msgid ""
"A string in the form <hash_type>=<hash_value>. For example: "
"``md5=e138491e9d5b97023cea823fe17bac22``"
msgstr ""
#: ../../docstring of salt.modules.file.check_managed:1
msgid "Check to see what changes need to be made for a file"
msgstr ""
#: ../../docstring of salt.modules.file.check_perms:1
msgid "Check the permissions on files and chown if needed"
msgstr ""
#: ../../docstring of salt.modules.file.chgrp:1
msgid "Change the group of a file"
msgstr ""
#: ../../docstring of salt.modules.file.chown:1
msgid "Chown a file, pass the file the desired user and group"
msgstr ""
#: ../../docstring of salt.modules.file.comment:1 ../../docstring of
#: salt.modules.file.psed:1 ../../docstring of salt.modules.file.sed:1
#: ../../docstring of salt.modules.file.uncomment:1
msgid "Use :py:func:`~salt.modules.file.replace` instead."
msgstr ""
#: ../../docstring of salt.modules.file.comment:4
msgid "Comment out specified lines in a file"
msgstr ""
#: ../../docstring of salt.modules.file.comment:7 ../../docstring of
#: salt.modules.file.psed:11 ../../docstring of salt.modules.file.sed:11
#: ../../docstring of salt.modules.file.uncomment:7
msgid "The full path to the file to be edited"
msgstr ""
#: ../../docstring of salt.modules.file.comment:11 ../../docstring of
#: salt.modules.file.uncomment:11
msgid "regex"
msgstr ""
#: ../../docstring of salt.modules.file.comment:9
msgid ""
"A regular expression used to find the lines that are to be commented; this "
"pattern will be wrapped in parenthesis and will move any preceding/trailing "
"``^`` or ``$`` characters outside the parenthesis (e.g., the pattern "
"``^foo$`` will be rewritten as ``^(foo)$``)"
msgstr ""
#: ../../docstring of salt.modules.file.comment:14 ../../docstring of
#: salt.modules.file.uncomment:13
msgid "char : ``#``"
msgstr ""
#: ../../docstring of salt.modules.file.comment:14
msgid ""
"The character to be inserted at the beginning of a line in order to comment "
"it out"
msgstr ""
#: ../../docstring of salt.modules.file.comment:23 ../../docstring of
#: salt.modules.file.psed:20 ../../docstring of salt.modules.file.sed:20
#: ../../docstring of salt.modules.file.uncomment:18
msgid "backup : ``.bak``"
msgstr ""
#: ../../docstring of salt.modules.file.comment:17
msgid "The file will be backed up before edit with this file extension"
msgstr ""
#: ../../docstring of salt.modules.file.comment:21
msgid ""
"This backup will be overwritten each time ``sed`` / ``comment`` / "
"``uncomment`` is called. Meaning the backup will only be useful after the "
"first invocation."
msgstr ""
#: ../../docstring of salt.modules.file.contains:1 ../../docstring of
#: salt.modules.file.contains_glob:1 ../../docstring of
#: salt.modules.file.contains_regex:1 ../../docstring of
#: salt.modules.file.contains_regex_multiline:1 ../../docstring of
#: salt.modules.file.sed_contains:1
msgid "Use :func:`search` instead."
msgstr ""
#: ../../docstring of salt.modules.file.contains:4
msgid "Return ``True`` if the file at ``path`` contains ``text``"
msgstr ""
#: ../../docstring of salt.modules.file.contains_glob:4
msgid "Return True if the given glob matches a string in the named file"
msgstr ""
#: ../../docstring of salt.modules.file.contains_regex:4
msgid ""
"Return True if the given regular expression matches on any line in the text "
"of a given file."
msgstr ""
#: ../../docstring of salt.modules.file.contains_regex:7
msgid ""
"If the lchar argument (leading char) is specified, it will strip `lchar` "
"from the left side of each line before trying to match"
msgstr ""
#: ../../docstring of salt.modules.file.contains_regex_multiline:4
msgid ""
"Return True if the given regular expression matches anything in the text of "
"a given file"
msgstr ""
#: ../../docstring of salt.modules.file.contains_regex_multiline:7
msgid ""
"Traverses multiple lines at a time, via the salt BufferedReader (reads in "
"chunks)"
msgstr ""
#: ../../docstring of salt.modules.file.copy:1
msgid "Copy a file or directory"
msgstr ""
#: ../../docstring of salt.modules.file.delete_backup:2 ../../docstring of
#: salt.modules.file.list_backups:2 ../../docstring of
#: salt.modules.file.restore_backup:2
msgid "This function will be available in version 0.17.0."
msgstr ""
#: ../../docstring of salt.modules.file.delete_backup:4 ../../docstring of
#: salt.modules.file.restore_backup:4
msgid ""
"Restore a previous version of a file that was backed up using Salt's "
":doc:`file state backup </ref/states/backup_mode>` system."
msgstr ""
#: ../../docstring of salt.modules.file.delete_backup:8 ../../docstring of
#: salt.modules.file.list_backups:8 ../../docstring of
#: salt.modules.file.restore_backup:8
msgid "The path on the minion to check for backups"
msgstr ""
#: ../../docstring of salt.modules.file.delete_backup:11 ../../docstring of
#: salt.modules.file.restore_backup:11
msgid "backup_id"
msgstr ""
#: ../../docstring of salt.modules.file.delete_backup:10
msgid ""
"The numeric id for the backup you wish to delete, as found using "
":mod:`file.list_backups <salt.modules.file.list_backups>`"
msgstr ""
#: ../../docstring of salt.modules.file.directory_exists:1
msgid "Tests to see if path is a valid directory. Returns True/False."
msgstr ""
#: ../../docstring of salt.modules.file.file_exists:1
msgid "Tests to see if path is a valid file. Returns True/False."
msgstr ""
#: ../../docstring of salt.modules.file.find:1
msgid ""
"Approximate the Unix ``find(1)`` command and return a list of paths that "
"meet the specified criteria."
msgstr ""
#: ../../docstring of salt.modules.file.find:4
msgid "The options include match criteria::"
msgstr ""
#: ../../docstring of salt.modules.file.find:17
msgid "and/or actions::"
msgstr ""
#: ../../docstring of salt.modules.file.find:23
msgid "The default action is 'print=path'."
msgstr ""
#: ../../docstring of salt.modules.file.find:25
msgid "file-glob::"
msgstr ""
#: ../../docstring of salt.modules.file.find:35
msgid ""
"path-regex: a Python re (regular expression) pattern to match pathnames"
msgstr ""
#: ../../docstring of salt.modules.file.find:37
msgid "file-types: a string of one or more of the following::"
msgstr ""
#: ../../docstring of salt.modules.file.find:48
msgid "users: a space and/or comma separated list of user names and/or uids"
msgstr ""
#: ../../docstring of salt.modules.file.find:50
msgid "groups: a space and/or comma separated list of group names and/or gids"
msgstr ""
#: ../../docstring of salt.modules.file.find:52
msgid "size-unit::"
msgstr ""
#: ../../docstring of salt.modules.file.find:60
msgid "interval::"
msgstr ""
#: ../../docstring of salt.modules.file.find:71
msgid ""
"print-opts: a comma and/or space separated list of one or more of the "
"following::"
msgstr ""
#: ../../docstring of salt.modules.file.find:84 ../../docstring of
#: salt.modules.file.mknod:4
msgid "CLI Examples:"
msgstr ""
#: ../../docstring of salt.modules.file.get_devmm:1
msgid "Get major/minor info from a device"
msgstr ""
#: ../../docstring of salt.modules.file.get_diff:1
msgid "Return unified diff of file compared to file on master"
msgstr ""
#: ../../docstring of salt.modules.file.get_gid:1
msgid "Return the id of the group that owns a given file"
msgstr ""
#: ../../docstring of salt.modules.file.get_gid:9 ../../docstring of
#: salt.modules.file.get_group:9 ../../docstring of
#: salt.modules.file.get_uid:9 ../../docstring of salt.modules.file.get_user:9
msgid "``follow_symlinks`` option added"
msgstr ""
#: ../../docstring of salt.modules.file.get_group:1
msgid "Return the group that owns a given file"
msgstr ""
#: ../../docstring of salt.modules.file.get_hash:1
msgid "Get the hash sum of a file"
msgstr ""
#: ../../docstring of salt.modules.file.get_hash:7
msgid "This is better than ``get_sum`` for the following reasons:"
msgstr ""
#: ../../docstring of salt.modules.file.get_hash:4
msgid "It does not read the entire file into memory."
msgstr ""
#: ../../docstring of salt.modules.file.get_hash:7
msgid "It does not return a string on error. The returned value of"
msgstr ""
#: ../../docstring of salt.modules.file.get_hash:6
msgid ""
"``get_sum`` cannot really be trusted since it is vulnerable to collisions: "
"``get_sum(..., 'xyz') == 'Hash xyz not supported'``"
msgstr ""
#: ../../docstring of salt.modules.file.get_managed:1
msgid "Return the managed file data for file.managed"
msgstr ""
#: ../../docstring of salt.modules.file.get_mode:1
msgid "Return the mode of a file"
msgstr ""
#: ../../docstring of salt.modules.file.get_selinux_context:1
msgid "Get an SELinux context from a given path"
msgstr ""
#: ../../docstring of salt.modules.file.get_sum:1
msgid ""
"Return the sum for the given file, default is md5, sha1, sha224, sha256, "
"sha384, sha512 are supported"
msgstr ""
#: ../../docstring of salt.modules.file.get_uid:1
msgid "Return the id of the user that owns a given file"
msgstr ""
#: ../../docstring of salt.modules.file.get_user:1
msgid "Return the user that owns a given file"
msgstr ""
#: ../../docstring of salt.modules.file.gid_to_group:1
msgid "Convert the group id to the group name on this system"
msgstr ""
#: ../../docstring of salt.modules.file.group_to_gid:1
msgid "Convert the group to the gid on this system"
msgstr ""
#: ../../docstring of salt.modules.file.is_blkdev:1
msgid "Check if a file exists and is a block device."
msgstr ""
#: ../../docstring of salt.modules.file.is_chrdev:1
msgid "Check if a file exists and is a character device."
msgstr ""
#: ../../docstring of salt.modules.file.is_fifo:1
msgid "Check if a file exists and is a FIFO."
msgstr ""
#: ../../docstring of salt.modules.file.list_backups:4
msgid ""
"Lists the previous versions of a file backed up using Salt's :doc:`file "
"state backup </ref/states/backup_mode>` system."
msgstr ""
#: ../../docstring of salt.modules.file.list_backups:10
msgid "limit"
msgstr ""
#: ../../docstring of salt.modules.file.list_backups:10
msgid "Limit the number of results to the most recent N backups"
msgstr ""
#: ../../docstring of salt.modules.file.makedirs:1
msgid "Ensure that the directory containing this path is available."
msgstr ""
#: ../../docstring of salt.modules.file.makedirs_perms:1
msgid ""
"Taken and modified from os.makedirs to set user, group and mode for each "
"directory created."
msgstr ""
#: ../../docstring of salt.modules.file.manage_file:1
msgid ""
"Checks the destination against what was retrieved with get_managed and makes"
" the appropriate modifications (if necessary)."
msgstr ""
#: ../../docstring of salt.modules.file.mkdir:1
msgid "Ensure that a directory is available."
msgstr ""
#: ../../docstring of salt.modules.file.mknod:1
msgid ""
"Create a block device, character device, or fifo pipe. Identical to the gnu "
"mknod."
msgstr ""
#: ../../docstring of salt.modules.file.mknod_blkdev:1
msgid "Create a block device."
msgstr ""
#: ../../docstring of salt.modules.file.mknod_chrdev:1
msgid "Create a character device."
msgstr ""
#: ../../docstring of salt.modules.file.mknod_fifo:1
msgid "Create a FIFO pipe."
msgstr ""
#: ../../docstring of salt.modules.file.patch:3
msgid "Apply a patch to a file"
msgstr ""
#: ../../docstring of salt.modules.file.patch:5 ../../docstring of
#: salt.modules.file.psed:6 ../../docstring of salt.modules.file.sed:6
msgid "Equivalent to::"
msgstr ""
#: ../../docstring of salt.modules.file.patch:9
msgid "originalfile"
msgstr ""
#: ../../docstring of salt.modules.file.patch:10
msgid "The full path to the file or directory to be patched"
msgstr ""
#: ../../docstring of salt.modules.file.patch:11
msgid "patchfile"
msgstr ""
#: ../../docstring of salt.modules.file.patch:12
msgid "A patch file to apply to ``originalfile``"
msgstr ""
#: ../../docstring of salt.modules.file.patch:14
msgid "options"
msgstr ""
#: ../../docstring of salt.modules.file.patch:14
msgid "Options to pass to patch."
msgstr ""
#: ../../docstring of salt.modules.file.psed:4
msgid "Make a simple edit to a file (pure Python version)"
msgstr ""
#: ../../docstring of salt.modules.file.psed:12 ../../docstring of
#: salt.modules.file.sed:12
msgid "before"
msgstr ""
#: ../../docstring of salt.modules.file.psed:13 ../../docstring of
#: salt.modules.file.sed:13
msgid "A pattern to find in order to replace with ``after``"
msgstr ""
#: ../../docstring of salt.modules.file.psed:14 ../../docstring of
#: salt.modules.file.sed:14
msgid "after"
msgstr ""
#: ../../docstring of salt.modules.file.psed:15 ../../docstring of
#: salt.modules.file.sed:15
msgid "Text that will replace ``before``"
msgstr ""
#: ../../docstring of salt.modules.file.psed:16 ../../docstring of
#: salt.modules.file.sed:16
msgid "limit : ``''``"
msgstr ""
#: ../../docstring of salt.modules.file.psed:17 ../../docstring of
#: salt.modules.file.sed:17
msgid "An initial pattern to search for before searching for ``before``"
msgstr ""
#: ../../docstring of salt.modules.file.psed:19 ../../docstring of
#: salt.modules.file.sed:19 ../../docstring of salt.modules.file.uncomment:16
msgid ""
"The file will be backed up before edit with this file extension; "
"**WARNING:** each time ``sed``/``comment``/``uncomment`` is called will "
"overwrite this backup"
msgstr ""
#: ../../docstring of salt.modules.file.psed:31
msgid "flags : ``gMS``"
msgstr ""
#: ../../docstring of salt.modules.file.psed:31
msgid "Flags to modify the search. Valid values are:"
msgstr ""
#: ../../docstring of salt.modules.file.psed:24
msgid "``g``: Replace all occurrences of the pattern, not just the first."
msgstr ""
#: ../../docstring of salt.modules.file.psed:25
msgid "``I``: Ignore case."
msgstr ""
#: ../../docstring of salt.modules.file.psed:26
msgid ""
"``L``: Make ``\\w``, ``\\W``, ``\\b``, ``\\B``, ``\\s`` and ``\\S`` "
"dependent on the locale."
msgstr ""
#: ../../docstring of salt.modules.file.psed:28
msgid "``M``: Treat multiple lines as a single line."
msgstr ""
#: ../../docstring of salt.modules.file.psed:29
msgid "``S``: Make `.` match all characters, including newlines."
msgstr ""
#: ../../docstring of salt.modules.file.psed:30
msgid ""
"``U``: Make ``\\w``, ``\\W``, ``\\b``, ``\\B``, ``\\d``, ``\\D``, ``\\s`` "
"and ``\\S`` dependent on Unicode."
msgstr ""
#: ../../docstring of salt.modules.file.psed:32
msgid "``X``: Verbose (whitespace is ignored)."
msgstr ""
#: ../../docstring of salt.modules.file.psed:34
msgid "multi: ``False``"
msgstr ""
#: ../../docstring of salt.modules.file.psed:34
msgid "If True, treat the entire file as a single line"
msgstr ""
#: ../../docstring of salt.modules.file.psed:36 ../../docstring of
#: salt.modules.file.sed:32
msgid ""
"Forward slashes and single quotes will be escaped automatically in the "
"``before`` and ``after`` patterns."
msgstr ""
#: ../../docstring of salt.modules.file.remove:1
msgid "Remove the named file"
msgstr ""
#: ../../docstring of salt.modules.file.rename:1
msgid "Rename a file or directory"
msgstr ""
#: ../../docstring of salt.modules.file.replace:1
msgid "Replace occurances of a pattern in a file"
msgstr ""
#: ../../docstring of salt.modules.file.replace:5
msgid ""
"This is a pure Python implementation that wraps Python's :py:func:`~re.sub`."
msgstr ""
#: ../../docstring of salt.modules.file.replace:7
msgid "Filesystem path to the file to be edited"
msgstr ""
#: ../../docstring of salt.modules.file.replace:8
msgid "The PCRE search"
msgstr ""
#: ../../docstring of salt.modules.file.replace:9
msgid "The replacement text"
msgstr ""
#: ../../docstring of salt.modules.file.replace:10
msgid "Maximum number of pattern occurrences to be replaced"
msgstr ""
#: ../../docstring of salt.modules.file.replace:11
msgid ""
"A list of flags defined in :ref:`contents-of-module-re`. Each list item "
"should be a string that will correlate to the human-friendly flag name. "
"E.g., ``['IGNORECASE', 'MULTILINE']``. Note: multiline searches must specify"
" ``file`` as the ``bufsize`` argument below."
msgstr ""
#: ../../docstring of salt.modules.file.replace:16
msgid ""
"How much of the file to buffer into memory at once. The default value ``1`` "
"processes one line at a time. The special value ``file`` may be specified "
"which will read the entire file into memory before processing. Note: "
"multiline searches must specify ``file`` buffering."
msgstr ""
#: ../../docstring of salt.modules.file.replace:22
msgid ""
"The file extension to use for a backup of the file before editing. Set to "
"``False`` to skip making a backup."
msgstr ""
#: ../../docstring of salt.modules.file.replace:24
msgid "Don't make any edits to the file"
msgstr ""
#: ../../docstring of salt.modules.file.replace:25
msgid ""
"Just search for the pattern; ignore the replacement; stop on the first match"
msgstr ""
#: ../../docstring of salt.modules.file.replace:27
msgid ""
"Output a unified diff of the old file and the new file. If ``False`` return "
"a boolean if any changes were made. Note: using this option will store two "
"copies of the file in-memory (the original version and the edited version) "
"in order to generate the diff."
msgstr ""
#: ../../docstring of salt.modules.file.replace:33
msgid "bool or str"
msgstr ""
#: ../../docstring of salt.modules.file.restore_backup:10
msgid ""
"The numeric id for the backup you wish to restore, as found using "
":mod:`file.list_backups <salt.modules.file.list_backups>`"
msgstr ""
#: ../../docstring of salt.modules.file.restorecon:1
msgid "Reset the SELinux context on a given path"
msgstr ""
#: ../../docstring of salt.modules.file.search:1
msgid "Search for occurances of a pattern in a file"
msgstr ""
#: ../../docstring of salt.modules.file.search:5
msgid "Params are identical to :py:func:`~salt.modules.file.replace`."
msgstr ""
#: ../../docstring of salt.modules.file.sed:4
msgid "Make a simple edit to a file"
msgstr ""
#: ../../docstring of salt.modules.file.sed:22
msgid "options : ``-r -e``"
msgstr ""
#: ../../docstring of salt.modules.file.sed:23
msgid "Options to pass to sed"
msgstr ""
#: ../../docstring of salt.modules.file.sed:25
msgid "flags : ``g``"
msgstr ""
#: ../../docstring of salt.modules.file.sed:25
msgid ""
"Flags to modify the sed search; e.g., ``i`` for case-insensitve pattern "
"matching"
msgstr ""
#: ../../docstring of salt.modules.file.sed:30
msgid "negate_match : False"
msgstr ""
#: ../../docstring of salt.modules.file.sed:28
msgid "Negate the search command (``!``)"
msgstr ""
#: ../../docstring of salt.modules.file.sed_contains:4
msgid ""
"Return True if the file at ``path`` contains ``text``. Utilizes sed to "
"perform the search (line-wise search)."
msgstr ""
#: ../../docstring of salt.modules.file.sed_contains:7
msgid "Note: the ``p`` flag will be added to any flags you pass in."
msgstr ""
#: ../../docstring of salt.modules.file.set_mode:1
msgid "Set the mode of a file"
msgstr ""
#: ../../docstring of salt.modules.file.set_selinux_context:1
msgid "Set a specific SELinux label on a given path"
msgstr ""
#: ../../docstring of salt.modules.file.source_list:1
msgid "Check the source list and return the source to use"
msgstr ""
#: ../../docstring of salt.modules.file.stats:1
msgid "Return a dict containing the stats for a given file"
msgstr ""
#: ../../docstring of salt.modules.file.symlink:1
msgid "Create a symbolic link to a file"
msgstr ""
#: ../../docstring of salt.modules.file.touch:3
msgid ""
"Just like the ``touch`` command, create a file if it doesn't exist or simply"
" update the atime and mtime if it already does."
msgstr ""
#: ../../docstring of salt.modules.file.touch:6
msgid "atime:"
msgstr ""
#: ../../docstring of salt.modules.file.touch:7
msgid "Access time in Unix epoch time"
msgstr ""
#: ../../docstring of salt.modules.file.touch:9
msgid "mtime:"
msgstr ""
#: ../../docstring of salt.modules.file.touch:9
msgid "Last modification in Unix epoch time"
msgstr ""
#: ../../docstring of salt.modules.file.uid_to_user:1
msgid "Convert a uid to a user name"
msgstr ""
#: ../../docstring of salt.modules.file.uncomment:4
msgid "Uncomment specified commented lines in a file"
msgstr ""
#: ../../docstring of salt.modules.file.uncomment:9
msgid ""
"A regular expression used to find the lines that are to be uncommented. This"
" regex should not include the comment character. A leading ``^`` character "
"will be stripped for convenience (for easily switching between comment() and"
" uncomment())."
msgstr ""
#: ../../docstring of salt.modules.file.uncomment:14
msgid "The character to remove in order to uncomment a line"
msgstr ""
#: ../../docstring of salt.modules.file.user_to_uid:1
msgid "Convert user name to a uid"
msgstr ""

View File

@ -1,52 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.freebsd_sysctl.rst:6
msgid "salt.modules.freebsd_sysctl"
msgstr ""
#: ../../../salt/modules/freebsd_sysctl.pydocstring of
#: salt.modules.freebsd_sysctl:1
msgid "Module for viewing and modifying sysctl parameters"
msgstr ""
#: ../../../salt/modules/freebsd_sysctl.pydocstring of
#: salt.modules.freebsd_sysctl.assign:1
msgid "Assign a single sysctl parameter for this minion"
msgstr ""
#: ../../../salt/modules/freebsd_sysctl.pydocstring of
#: salt.modules.freebsd_sysctl.assign:3
#: ../../../salt/modules/freebsd_sysctl.pydocstring of
#: salt.modules.freebsd_sysctl.get:3
#: ../../../salt/modules/freebsd_sysctl.pydocstring of
#: salt.modules.freebsd_sysctl.persist:3
#: ../../../salt/modules/freebsd_sysctl.pydocstring of
#: salt.modules.freebsd_sysctl.show:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/freebsd_sysctl.pydocstring of
#: salt.modules.freebsd_sysctl.get:1
msgid "Return a single sysctl parameter for this minion"
msgstr ""
#: ../../../salt/modules/freebsd_sysctl.pydocstring of
#: salt.modules.freebsd_sysctl.persist:1
msgid "Assign and persist a simple sysctl parameter for this minion"
msgstr ""
#: ../../../salt/modules/freebsd_sysctl.pydocstring of
#: salt.modules.freebsd_sysctl.show:1
msgid "Return a list of sysctl parameters for this minion"
msgstr ""

View File

@ -1,88 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.freebsdjail.rst:6
msgid "salt.modules.freebsdjail"
msgstr ""
#: ../../../salt/modules/freebsdjail.pydocstring of salt.modules.freebsdjail:1
msgid "The jail module for FreeBSD"
msgstr ""
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.fstab:1
msgid ""
"Display contents of a fstab(5) file defined in specified jail's "
"configuration. If no file is defined, return False."
msgstr ""
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.fstab:4
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.get_enabled:3
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.is_enabled:3
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.restart:3
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.show_config:3
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.start:3
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.status:3
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.stop:3
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.sysctl:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.get_enabled:1
msgid "Return which jails are set to be run"
msgstr ""
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.is_enabled:1
msgid "See if jail service is actually enabled on boot"
msgstr ""
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.restart:1
msgid "Restart the specified jail or all, if none specified"
msgstr ""
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.show_config:1
msgid "Display specified jail's configuration"
msgstr ""
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.start:1
msgid "Start the specified jail or all, if none specified"
msgstr ""
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.status:1
msgid "See if specified jail is currently running"
msgstr ""
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.stop:1
msgid "Stop the specified jail or all, if none specified"
msgstr ""
#: ../../../salt/modules/freebsdjail.pydocstring of
#: salt.modules.freebsdjail.sysctl:1
msgid "Dump all jail related kernel states (sysctl)"
msgstr ""

View File

@ -1,58 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.freebsdkmod.rst:6
msgid "salt.modules.freebsdkmod"
msgstr ""
#: ../../../salt/modules/freebsdkmod.pydocstring of salt.modules.freebsdkmod:1
msgid "Module to manage FreeBSD kernel modules"
msgstr ""
#: ../../../salt/modules/freebsdkmod.pydocstring of
#: salt.modules.freebsdkmod.available:1
msgid "Return a list of all available kernel modules"
msgstr ""
#: ../../../salt/modules/freebsdkmod.pydocstring of
#: salt.modules.freebsdkmod.available:3
#: ../../../salt/modules/freebsdkmod.pydocstring of
#: salt.modules.freebsdkmod.check_available:3
#: ../../../salt/modules/freebsdkmod.pydocstring of
#: salt.modules.freebsdkmod.load:3
#: ../../../salt/modules/freebsdkmod.pydocstring of
#: salt.modules.freebsdkmod.lsmod:3
#: ../../../salt/modules/freebsdkmod.pydocstring of
#: salt.modules.freebsdkmod.remove:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/freebsdkmod.pydocstring of
#: salt.modules.freebsdkmod.check_available:1
msgid "Check to see if the specified kernel module is available"
msgstr ""
#: ../../../salt/modules/freebsdkmod.pydocstring of
#: salt.modules.freebsdkmod.load:1
msgid "Load the specified kernel module"
msgstr ""
#: ../../../salt/modules/freebsdkmod.pydocstring of
#: salt.modules.freebsdkmod.lsmod:1
msgid "Return a dict containing information about currently loaded modules"
msgstr ""
#: ../../../salt/modules/freebsdkmod.pydocstring of
#: salt.modules.freebsdkmod.remove:1
msgid "Remove the specified kernel module"
msgstr ""

View File

@ -1,272 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.freebsdpkg.rst:6
msgid "salt.modules.freebsdpkg"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of salt.modules.freebsdpkg:1
msgid "Remote package support using ``pkg_add(1)``"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of salt.modules.freebsdpkg:5
msgid ""
"This module has been completely rewritten. Up to and including version "
"0.17.0, it supported ``pkg_add(1)``, but checked for the existence of a "
"pkgng local database and, if found, would provide some of pkgng's "
"functionality. The rewrite of this module has removed all pkgng support, and"
" moved it to the :mod:`pkgng <salt.modules.pkgng>` execution module. For "
"verisions <= 0.17.0, the documentation here should not be considered "
"accurate. If your Minion is running one of these versions, then the "
"documentation for this module can be viewed using the :mod:`sys.doc "
"<salt.modules.sys.doc>` function:"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of salt.modules.freebsdpkg:20
msgid ""
"This module acts as the default package provider for FreeBSD 9 and newer. If"
" you need to use pkgng on a FreeBSD 9 system, you will need to override the "
"``pkg`` provider by setting the :conf_minion:`providers` parameter in your "
"Minion config file, in order to use pkgng."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of salt.modules.freebsdpkg:30
msgid ""
"More information on pkgng support can be found in the documentation for the "
":mod:`pkgng <salt.modules.pkgng>` module."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of salt.modules.freebsdpkg:33
msgid ""
"This module will respect the ``PACKAGEROOT`` and ``PACKAGESITE`` environment"
" variables, if set, but these values can also be overridden in several ways:"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of salt.modules.freebsdpkg:36
msgid ""
":strong:`Salt configuration parameters.` The configuration parameters "
"``freebsdpkg.PACKAGEROOT`` and ``freebsdpkg.PACKAGESITE`` are recognized. "
"These config parameters are looked up using :mod:`config.get "
"<salt.modules.config.get>` and can thus be specified in the Master config "
"file, Grains, Pillar, or in the Minion config file. Example:"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of salt.modules.freebsdpkg:47
msgid ""
":strong:`CLI arguments.` Both the ``packageroot`` (used interchangeably with"
" ``fromrepo`` for API compatibility) and ``packagesite`` CLI arguments are "
"recognized, and override their config counterparts from section 1 above."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.file_dict:1
msgid ""
"List the files that belong to a package, grouped by package. Not specifying "
"any packages will return a list of _every_ file on the system's package "
"database (not generally recommended)."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.file_dict:5
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.file_list:5
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.file_list:1
msgid ""
"List the files that belong to a package. Not specifying any packages will "
"return a list of _every_ file on the system's package database (not "
"generally recommended)."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:1
msgid "Install package(s) using ``pkg_add(1)``"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:4
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.remove:5
msgid "name"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:4
msgid "The name of the package to be installed."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:7
msgid "refresh"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:7
msgid "Whether or not to refresh the package database before installing."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:11
msgid "fromrepo or packageroot"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:10
msgid ""
"Specify a package repository from which to install. Overrides the system "
"default, as well as the PACKAGEROOT environment variable."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:16
msgid "packagesite"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:14
msgid ""
"Specify the exact directory from which to install the remote package. "
"Overrides the PACKAGESITE environment variable, if present."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:18
msgid "Multiple Package Installation Options:"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:28
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.remove:11
msgid "pkgs"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:21
msgid ""
"A list of packages to install from a software repository. Must be passed as "
"a python list."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:24
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:35
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:46
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.latest_version:5
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.list_pkgs:5
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.refresh_db:4
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.rehash:5
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.remove:18
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.upgrade:4
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.version:5
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:39
msgid "sources"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:31
msgid ""
"A list of packages to install. Must be passed as a list of dicts, with the "
"keys being package names, and the values being the source URI or local path "
"to the package."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.install:41
msgid "Return a dict containing the new package names and versions::"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.latest_version:1
msgid ""
"``pkg_add(1)`` is not capable of querying for remote packages, so this "
"function will always return results as if there is no package available for "
"install or upgrade."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.list_pkgs:1
msgid "List the packages currently installed as a dict::"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.refresh_db:1
msgid ""
"``pkg_add(1)`` does not use a local database of available packages, so this "
"function simply returns ``True``. it exists merely for API compatibility."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.rehash:1
msgid ""
"Recomputes internal hash table for the PATH variable. Use whenever a new "
"command is created during the current session."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.remove:1
msgid "Remove packages using ``pkg_delete(1)``"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.remove:4
msgid "The name of the package to be deleted."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.remove:7
msgid "Multiple Package Options:"
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.remove:10
msgid ""
"A list of packages to delete. Must be passed as a python list. The ``name`` "
"parameter will be ignored if this option is passed."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.remove:16
msgid "Returns a dict containing the changes."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.upgrade:1
msgid ""
"Upgrades are not supported with ``pkg_add(1)``. This function is included "
"for API compatibility only and always returns an empty dict."
msgstr ""
#: ../../../salt/modules/freebsdpkg.pydocstring of
#: salt.modules.freebsdpkg.version:1
msgid ""
"Returns a string representing the package version or an empty string if not "
"installed. If more than one package name is specified, a dict of "
"name/version pairs is returned."
msgstr ""

View File

@ -1,155 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.freebsdservice.rst:6
msgid "salt.modules.freebsdservice"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice:1
msgid "The service module for FreeBSD"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.available:1
msgid "Check that the given service is available."
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.available:3
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.disable:5
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.disabled:3
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.enable:13
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.enabled:6
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.get_all:3
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.get_disabled:3
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.get_enabled:3
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.reload_:3
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.restart:3
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.start:3
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.status:6
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.stop:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.disable:1
msgid "Disable the named service to start at boot"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.disable:3
msgid "Arguments the same as for enable()"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.disabled:1
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.enabled:1
msgid "Return True if the named service is enabled, false otherwise"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.enable:1
msgid "Enable the named service to start at boot"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.enable:4
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.enabled:4
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.status:4
msgid "name"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.enable:4
msgid "service name"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.enable:11
msgid "config : /etc/rc.conf"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.enable:7
msgid ""
"Config file for managing service. If config value is empty string, then "
"/etc/rc.conf.d/<service> used. See man rc.conf(5) for details."
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.enable:11
msgid "Also service.config variable can be used to change default."
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.enabled:4
msgid "Service name"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.get_all:1
msgid "Return a list of all available services"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.get_disabled:1
msgid "Return what services are available but not enabled to start at boot"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.get_enabled:1
msgid "Return what services are set to run on boot"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.reload_:1
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.restart:1
msgid "Restart the named service"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.start:1
msgid "Start the specified service"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.status:1
msgid "Return the status for a service (True or False)."
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.status:4
msgid "Name of service"
msgstr ""
#: ../../../salt/modules/freebsdservice.pydocstring of
#: salt.modules.freebsdservice.stop:1
msgid "Stop the specified service"
msgstr ""

View File

@ -1,180 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.gem.rst:6
msgid "salt.modules.gem"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem:1
msgid "Manage ruby gems."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:1
msgid "Installs one or several gems."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:3
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.uninstall:3
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update:3
msgid "gems"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:4
msgid "The gems to install"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:5
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.list_:5
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_add:5
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_list:3
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_remove:5
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.uninstall:5
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update:5
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update_system:5
msgid "ruby : None"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:6
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.list_:6
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_add:6
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_list:4
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_remove:6
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.uninstall:6
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update:6
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update_system:6
msgid "If RVM is installed, the ruby version and gemset to use."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:7
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.list_:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_add:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_list:6
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_remove:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.uninstall:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update_system:8
msgid "runas : None"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.list_:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_add:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_list:6
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_remove:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.uninstall:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update_system:8
msgid "The user to run gem as."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:10
msgid "version : None"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:10
msgid ""
"Specify the version to install for the gem. Doesn't play nice with multiple "
"gems at once"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:12
msgid "rdoc : False"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:13
msgid "Generate RDoc documentation for the gem(s)."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:15
msgid "ri : False"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:15
msgid "Generate RI documentation for the gem(s)."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.install:17
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.list_:10
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_add:10
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_list:8
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_remove:10
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.uninstall:10
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update:10
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update_system:10
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.list_:1
msgid "List locally installed gems."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.list_:3
msgid "prefix :"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.list_:4
msgid "Only list gems when the name matches this prefix."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_add:1
msgid "Add a gem source."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_add:3
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_remove:3
msgid "source_uri"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_add:4
msgid "The source URI to add."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_list:1
msgid "List the configured gem sources."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_remove:1
msgid "Remove a gem source."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.sources_remove:4
msgid "The source URI to remove."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.uninstall:1
msgid "Uninstall one or several gems."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.uninstall:4
msgid "The gems to uninstall."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update:1
msgid "Update one or several gems."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update:4
msgid "The gems to update."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update_system:1
msgid "Update rubygems."
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update_system:3
msgid "version : (newest)"
msgstr ""
#: ../../../salt/modules/gem.pydocstring of salt.modules.gem.update_system:4
msgid "The version of rubygems to install."
msgstr ""

View File

@ -1,112 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.gentoo_service.rst:6
msgid "salt.modules.gentoo_service"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service:1
msgid ""
"Top level package command wrapper, used to translate the os detected by "
"grains to the correct service manager"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.available:1
msgid ""
"Returns ``True`` if the specified service is available, otherwise returns "
"``False``."
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.available:4
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.disable:3
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.disabled:3
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.enable:3
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.enabled:3
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.get_all:3
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.get_disabled:3
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.get_enabled:3
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.restart:3
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.start:3
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.status:5
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.stop:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.disable:1
msgid "Disable the named service to start at boot"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.disabled:1
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.enabled:1
msgid "Return True if the named service is enabled, false otherwise"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.enable:1
msgid "Enable the named service to start at boot"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.get_all:1
msgid "Return all available boot services"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.get_disabled:1
msgid "Return a set of services that are installed but disabled"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.get_enabled:1
msgid "Return a list of service that are enabled on boot"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.restart:1
msgid "Restart the named service"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.start:1
msgid "Start the specified service"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.status:1
msgid ""
"Return the status for a service, returns the PID or an empty string if the "
"service is running or not, pass a signature to use to find the service via "
"ps"
msgstr ""
#: ../../../salt/modules/gentoo_service.pydocstring of
#: salt.modules.gentoo_service.stop:1
msgid "Stop the specified service"
msgstr ""

View File

@ -1,188 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.gentoolkitmod.rst:6
msgid "salt.modules.gentoolkitmod"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod:1
msgid "Support for Gentoolkit"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:1
msgid "Clean obsolete portage sources"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:4
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_pkg:4
msgid "destructive"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:4
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_pkg:4
msgid "Only keep minimum for reinstallation"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:8
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_pkg:8
msgid "package_names"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:7
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_pkg:7
msgid ""
"Protect all versions of installed packages. Only meaningful if used with "
"destructive=True"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:13
msgid "size_limit <size>"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:11
msgid ""
"Don't delete distfiles bigger than <size>. <size> is a size specification: "
"\"10M\" is \"ten megabytes\", \"200K\" is \"two hundreds kilobytes\", etc. "
"Units are: G, M, K and B."
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:19
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_pkg:14
msgid "time_limit <time>"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:16
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_pkg:11
msgid ""
"Don't delete distfiles files modified since <time> <time> is an amount of "
"time: \"1y\" is \"one year\", \"2w\" is \"two weeks\", etc. Units are: y "
"(years), m (months), w (weeks), d (days) and h (hours)."
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:23
msgid "fetch_restricted"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:22
msgid ""
"Protect fetch-restricted files. Only meaningful if used with "
"destructive=True"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:28
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_pkg:19
msgid "exclude_file"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:26
msgid ""
"Path to exclusion file. Default is /etc/eclean/distfiles.exclude This is the"
" same default eclean-dist uses. Use None if this file exists and you want to"
" ignore."
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:30
msgid "Returns a dict containing the cleaned, saved, and deprecated dists:"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_dist:39
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_pkg:28
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.glsa_check_list:15
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.revdep_rebuild:8
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_pkg:1
msgid "Clean obsolete binary packages"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_pkg:17
msgid ""
"Path to exclusion file. Default is /etc/eclean/packages.exclude This is the "
"same default eclean-pkg uses. Use None if this file exists and you want to "
"ignore."
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.eclean_pkg:21
msgid "Returns a dict containing the cleaned binary packages:"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.glsa_check_list:1
msgid "List the status of Gentoo Linux Security Advisories"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.glsa_check_list:5
msgid "glsa_list"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.glsa_check_list:4
msgid ""
"can contain an arbitrary number of GLSA ids, filenames containing GLSAs or "
"the special identifiers 'all' and 'affected'"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.glsa_check_list:7
msgid ""
"Returns a dict containing glsa ids with a description, status, and CVEs:"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.revdep_rebuild:1
msgid "Fix up broken reverse dependencies"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.revdep_rebuild:6
msgid "lib"
msgstr ""
#: ../../../salt/modules/gentoolkitmod.pydocstring of
#: salt.modules.gentoolkitmod.revdep_rebuild:4
msgid ""
"Search for reverse dependencies for a particular library rather than every "
"library on the system. It can be a full path to a library or basic regular "
"expression."
msgstr ""

View File

@ -1,501 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.git.rst:6
msgid "salt.modules.git"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git:1
msgid "Support for the Git SCM"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.add:1
msgid "add a file to git"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.add:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.commit:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_get:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:5
#: ../../../salt/modules/git.pydocstring of salt.modules.git.describe:5
#: ../../../salt/modules/git.pydocstring of salt.modules.git.fetch:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.init:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.merge:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.pull:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rebase:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remotes:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.reset:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.revision:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rm:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.stash:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.status:5
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:4
msgid "cwd"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.add:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.commit:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_get:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:5
#: ../../../salt/modules/git.pydocstring of salt.modules.git.describe:5
#: ../../../salt/modules/git.pydocstring of salt.modules.git.fetch:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.init:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.merge:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.pull:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rebase:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remotes:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.reset:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.revision:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rm:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.stash:4
#: ../../../salt/modules/git.pydocstring of salt.modules.git.status:5
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:4
msgid "The path to the Git repository"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.add:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rm:7
msgid "file_name"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.add:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rm:7
msgid "Path to the file in the cwd"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.add:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.commit:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.fetch:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.init:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.merge:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.pull:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rebase:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.reset:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rm:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.stash:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:10
msgid "opts : None"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.add:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.commit:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.fetch:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.init:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.merge:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.pull:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rebase:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.reset:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rm:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.stash:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:10
msgid "Any additional options to add to the command line"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.add:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:19
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:16
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.commit:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_get:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:14
#: ../../../salt/modules/git.pydocstring of salt.modules.git.describe:11
#: ../../../salt/modules/git.pydocstring of salt.modules.git.fetch:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.init:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.merge:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.pull:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:16
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rebase:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_get:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_set:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remotes:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.reset:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.revision:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rm:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.stash:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.status:8
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:13
msgid "user : None"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.add:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:19
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:16
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.commit:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_get:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:14
#: ../../../salt/modules/git.pydocstring of salt.modules.git.describe:11
#: ../../../salt/modules/git.pydocstring of salt.modules.git.fetch:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.init:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.merge:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.pull:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:16
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rebase:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_get:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_set:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remotes:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.reset:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.revision:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rm:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.stash:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.status:8
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:13
msgid "Run git as a user other than what the minion runs as"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.add:15
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:24
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:18
#: ../../../salt/modules/git.pydocstring of salt.modules.git.commit:15
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_get:12
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:19
#: ../../../salt/modules/git.pydocstring of salt.modules.git.current_branch:3
#: ../../../salt/modules/git.pydocstring of salt.modules.git.fetch:15
#: ../../../salt/modules/git.pydocstring of salt.modules.git.init:12
#: ../../../salt/modules/git.pydocstring of salt.modules.git.merge:15
#: ../../../salt/modules/git.pydocstring of salt.modules.git.pull:15
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:22
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rebase:15
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_get:9
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_set:12
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remotes:9
#: ../../../salt/modules/git.pydocstring of salt.modules.git.reset:12
#: ../../../salt/modules/git.pydocstring of salt.modules.git.revision:15
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rm:15
#: ../../../salt/modules/git.pydocstring of salt.modules.git.stash:12
#: ../../../salt/modules/git.pydocstring of salt.modules.git.status:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:18
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:1
msgid "Export a tarball from the repository"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:7
msgid "output"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:7
msgid "The path to the archive tarball"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:10
#: ../../../salt/modules/git.pydocstring of salt.modules.git.describe:8
#: ../../../salt/modules/git.pydocstring of salt.modules.git.revision:7
msgid "rev: HEAD"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:10
msgid "The revision to create an archive from"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:13
msgid "fmt: None"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:13
msgid "Format of the resulting archive, zip and tar are commonly used"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:16
msgid "prefix : None"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:16
msgid "Prepend <prefix>/ to every filename in the archive"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.archive:21
msgid ""
"If ``prefix`` is not specified it defaults to the basename of the repo "
"directory."
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:1
msgid "Checkout a given revision"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:7
msgid "rev"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:7
msgid "The remote branch or revision to checkout"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:10
msgid "force : False"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:10
msgid "Force a checkout even if there might be overwritten changes"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.checkout:18
#: ../../../salt/modules/git.pydocstring of salt.modules.git.describe:13
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:1
msgid "Clone a new repository"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:7
msgid "repository"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:7
msgid "The git URI of the repository"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:16
#: ../../../salt/modules/git.pydocstring of salt.modules.git.fetch:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.pull:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:20
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:16
msgid "identity : None"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.clone:16
#: ../../../salt/modules/git.pydocstring of salt.modules.git.fetch:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.pull:13
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:19
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:16
msgid "A path to a private key to use over SSH"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.commit:1
msgid "create a commit"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.commit:7
msgid "message"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.commit:7
msgid "The commit message"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_get:1
msgid ""
"Get a key from the git configuration file (.git/config) of the repository."
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_get:7
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:8
msgid "setting_name"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_get:7
msgid "The name of the configuration key to get"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:1
msgid ""
"Set a key in the git configuration file (.git/config) of the repository or "
"globally."
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:8
msgid "The name of the configuration key to set"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:11
msgid "setting_value"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:11
msgid "The (new) value to set"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:17
msgid "is_global : False"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.config_set:17
msgid "Set to True to use the '--global' flag with 'git config'"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.current_branch:1
msgid "Returns the current branch name, if on a branch."
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.describe:1
msgid ""
"Returns the git describe string (or the SHA hash if there are no tags) for "
"the given revision"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.describe:8
msgid "The revision to describe"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.fetch:1
msgid "Perform a fetch on the given repository"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.init:1
msgid "Initialize a new git repository"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.merge:1
msgid "Merge a given branch"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.merge:7
msgid "branch : @{upstream}"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.merge:7
msgid "The remote branch or revision to merge into the current branch"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.pull:1
msgid "Perform a pull on the given repository"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:1
msgid "Push to remote"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:7
msgid "remote_name"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:7
msgid "Name of the remote to push to"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:10
msgid "branch : master"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.push:10
msgid "Name of the branch to push"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rebase:1
msgid "Rebase the current branch"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rebase:7
msgid "rev : master"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rebase:7
msgid "The revision to rebase onto the current branch"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rebase:22
msgid "That is the same as:"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_get:1
msgid "get the fetch and push URL for a specified remote name"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_get:4
msgid "remote : origin"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_get:4
msgid "the remote name used to define the fetch and push URL"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_set:1
msgid ""
"sets a remote with name and URL like git remote add <remote_name> "
"<remote_url>"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_set:4
msgid "remote_name : origin"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_set:4
msgid "defines the remote name"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_set:7
msgid "remote_url : None"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remote_set:7
msgid "defines the remote URL; should not be None!"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.remotes:1
msgid "Get remotes like git remote -v"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.reset:1
msgid "Reset the repository checkout"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.revision:1
msgid ""
"Returns the long hash of a given identifier (hash, branch, tag, HEAD, etc)"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.revision:7
msgid "The revision"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.revision:10
msgid "short: False"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.revision:10
msgid "Return an abbreviated SHA1 git hash"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.rm:1
msgid "Remove a file from git"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.stash:1
msgid "Stash changes in the repository checkout"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.status:1
msgid ""
"Return the status of the repository. The returned format uses the status "
"codes of gits 'porcelain' output mode"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:1
msgid "Initialize git submodules"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:7
msgid "init : True"
msgstr ""
#: ../../../salt/modules/git.pydocstring of salt.modules.git.submodule:7
msgid "Ensure that new submodules are initialized"
msgstr ""

View File

@ -1,81 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.glance.rst:6
msgid "salt.modules.glance"
msgstr ""
#: ../../../salt/modules/glance.pydocstring of salt.modules.glance:1
msgid "Module for handling openstack glance calls."
msgstr ""
#: ../../../salt/modules/glance.pydocstring of salt.modules.glance:3
msgid "glanceclient Python adapter"
msgstr ""
#: ../../../salt/modules/glance.pydocstring of salt.modules.glance:4
msgid ""
"This module is not usable until the following are specified either in a "
"pillar or in the minion's config file::"
msgstr ""
#: ../../../salt/modules/glance.pydocstring of salt.modules.glance:14
msgid ""
"If configuration for multiple openstack accounts is required, they can be "
"set up as different configuration profiles: For example::"
msgstr ""
#: ../../../salt/modules/glance.pydocstring of salt.modules.glance:32
msgid ""
"With this configuration in place, any of the keystone functions can make use"
" of a configuration profile by declaring it explicitly. For example::"
msgstr ""
#: ../../../salt/modules/glance.pydocstring of
#: salt.modules.glance.image_create:1
msgid "Create an image (glance image-create)"
msgstr ""
#: ../../../salt/modules/glance.pydocstring of
#: salt.modules.glance.image_create:3 ../../../salt/modules/glance.pydocstring
#: of salt.modules.glance.image_list:3
#: ../../../salt/modules/glance.pydocstring of
#: salt.modules.glance.image_show:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/glance.pydocstring of
#: salt.modules.glance.image_create:11
msgid ""
"For all possible values, run ``glance help image-create`` on the minion."
msgstr ""
#: ../../../salt/modules/glance.pydocstring of
#: salt.modules.glance.image_delete:1
msgid "Delete an image (glance image-delete)"
msgstr ""
#: ../../../salt/modules/glance.pydocstring of
#: salt.modules.glance.image_delete:3
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/glance.pydocstring of
#: salt.modules.glance.image_list:1
msgid "Return a list of available images (glance image-list)"
msgstr ""
#: ../../../salt/modules/glance.pydocstring of
#: salt.modules.glance.image_show:1
msgid "Return details about a specific image (glance image-show)"
msgstr ""

View File

@ -1,159 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.grains.rst:6
msgid "salt.modules.grains"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains:1
msgid "Return/control aspects of the grains data"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.append:3
msgid "Append a value to a list in the grains config file"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.append:5
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.delval:5
#: ../../../salt/modules/grains.pydocstring of
#: salt.modules.grains.filter_by:60 ../../../salt/modules/grains.pydocstring
#: of salt.modules.grains.get:14 ../../../salt/modules/grains.pydocstring of
#: salt.modules.grains.get_or_set_hash:17
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.item:3
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.items:3
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.ls:3
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.remove:5
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.setval:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.delval:3
msgid "Delete a grain from the grains config file"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.filter_by:3
msgid ""
"Look up the given grain in a given dictionary for the current OS and return "
"the result"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.filter_by:6
msgid ""
"Although this may occasionally be useful at the CLI, the primary intent of "
"this function is for use in Jinja to make short work of creating lookup "
"tables for OS-specific data. For example:"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of
#: salt.modules.grains.filter_by:25
msgid ""
"Values in the lookup table may be overridden by values in Pillar. An example"
" Pillar to override values in the example above could be as follows:"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of
#: salt.modules.grains.filter_by:35
msgid ""
"The call to ``filter_by()`` would be modified as follows to reference those "
"Pillar values:"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of
#: salt.modules.grains.filter_by:45
msgid ""
"A dictionary, keyed by a grain, containing a value or values relevant to "
"systems matching that grain. For example, a key could be the grain for an OS"
" and the value could the name of a package on that particular OS."
msgstr ""
#: ../../../salt/modules/grains.pydocstring of
#: salt.modules.grains.filter_by:49
msgid ""
"The name of a grain to match with the current system's grains. For example, "
"the value of the \"os_family\" grain for the current system could be used to"
" pull values from the ``lookup_dict`` dictionary."
msgstr ""
#: ../../../salt/modules/grains.pydocstring of
#: salt.modules.grains.filter_by:53
msgid ""
"A dictionary to merge with the ``lookup_dict`` before doing the lookup. This"
" allows Pillar to override the values in the ``lookup_dict``. This could be "
"useful, for example, to override the values for non-standard package names "
"such as when using a different Python version from the default Python "
"version provided by the OS (e.g., ``python26-mysql`` instead of ``python-"
"mysql``)."
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.get:1
msgid ""
"Attempt to retrieve the named value from grains, if the named value is not "
"available return the passed default. The default return is an empty string."
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.get:4
msgid ""
"The value can also represent a value in a nested dict using a \":\" "
"delimiter for the dict. This means that if a dict in grains looks like "
"this::"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.get:9
msgid ""
"To retrieve the value associated with the apache key in the pkg dict this "
"key can be passed::"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of
#: salt.modules.grains.get_or_set_hash:1
msgid ""
"Perform a one-time generation of a hash and write it to the local grains. If"
" that grain has already been set return the value instead."
msgstr ""
#: ../../../salt/modules/grains.pydocstring of
#: salt.modules.grains.get_or_set_hash:4
msgid ""
"This is useful for generating passwords or keys that are specific to a "
"single minion that don't need to be stored somewhere centrally."
msgstr ""
#: ../../../salt/modules/grains.pydocstring of
#: salt.modules.grains.get_or_set_hash:7
msgid "State Example:"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.item:1
msgid "Return one or more grains"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.item:10
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.items:9
msgid "Sanitized CLI Example:"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.items:1
msgid "Return all of the minion's grains"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.ls:1
msgid "Return a list of all available grains"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.remove:3
msgid "Remove a value from a list in the grains config file"
msgstr ""
#: ../../../salt/modules/grains.pydocstring of salt.modules.grains.setval:1
msgid "Set a grains value in the grains config file"
msgstr ""

View File

@ -1,51 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.groupadd.rst:6
msgid "salt.modules.groupadd"
msgstr ""
#: ../../../salt/modules/groupadd.pydocstring of salt.modules.groupadd:1
msgid "Manage groups on Linux and OpenBSD"
msgstr ""
#: ../../../salt/modules/groupadd.pydocstring of salt.modules.groupadd.add:1
msgid "Add the specified group"
msgstr ""
#: ../../../salt/modules/groupadd.pydocstring of salt.modules.groupadd.add:3
#: ../../../salt/modules/groupadd.pydocstring of salt.modules.groupadd.chgid:3
#: ../../../salt/modules/groupadd.pydocstring of
#: salt.modules.groupadd.delete:3 ../../../salt/modules/groupadd.pydocstring
#: of salt.modules.groupadd.getent:3
#: ../../../salt/modules/groupadd.pydocstring of salt.modules.groupadd.info:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/groupadd.pydocstring of salt.modules.groupadd.chgid:1
msgid "Change the gid for a named group"
msgstr ""
#: ../../../salt/modules/groupadd.pydocstring of
#: salt.modules.groupadd.delete:1
msgid "Remove the named group"
msgstr ""
#: ../../../salt/modules/groupadd.pydocstring of
#: salt.modules.groupadd.getent:1
msgid "Return info on all groups"
msgstr ""
#: ../../../salt/modules/groupadd.pydocstring of salt.modules.groupadd.info:1
msgid "Return information about a group"
msgstr ""

View File

@ -1,37 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.grub_legacy.rst:6
msgid "salt.modules.grub_legacy"
msgstr ""
#: ../../../salt/modules/grub_legacy.pydocstring of salt.modules.grub_legacy:1
msgid "Support for GRUB Legacy"
msgstr ""
#: ../../../salt/modules/grub_legacy.pydocstring of
#: salt.modules.grub_legacy.conf:1
msgid "Parse GRUB conf file"
msgstr ""
#: ../../../salt/modules/grub_legacy.pydocstring of
#: salt.modules.grub_legacy.conf:3
#: ../../../salt/modules/grub_legacy.pydocstring of
#: salt.modules.grub_legacy.version:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/grub_legacy.pydocstring of
#: salt.modules.grub_legacy.version:1
msgid "Return server version from grub --version"
msgstr ""

View File

@ -1,32 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.guestfs.rst:6
msgid "salt.modules.guestfs"
msgstr ""
#: ../../../salt/modules/guestfs.pydocstring of salt.modules.guestfs:1
msgid "Interact with virtual machine images via libguestfs"
msgstr ""
#: ../../../salt/modules/guestfs.pydocstring of salt.modules.guestfs:3
msgid "libguestfs"
msgstr ""
#: ../../../salt/modules/guestfs.pydocstring of salt.modules.guestfs.mount:1
msgid "Mount an image"
msgstr ""
#: ../../../salt/modules/guestfs.pydocstring of salt.modules.guestfs.mount:3
msgid "CLI Example:"
msgstr ""

View File

@ -1,179 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.hg.rst:6
msgid "salt.modules.hg"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg:1
msgid "Support for the Mercurial SCM"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:1
msgid "Export a tarball from the repository"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:4
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.clone:4
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.describe:4
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.pull:4
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.revision:4
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.update:4
msgid "cwd"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:4
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.clone:4
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.describe:4
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.pull:4
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.revision:4
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.update:4
msgid "The path to the Mercurial repository"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:7
msgid "output"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:7
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.describe:7
msgid "The path to the archive tarball"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:10
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.describe:7
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.revision:7
msgid "rev: tip"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:10
msgid "The revision to create an archive from"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:14
msgid "fmt: None"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:13
msgid ""
"Format of the resulting archive. Mercurial supports: tar, tbz2, tgz, zip, "
"uzip, and files formats."
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:17
msgid "prefix : None"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:17
msgid "Prepend <prefix>/ to every filename in the archive"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:20
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.clone:13
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.describe:10
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.pull:10
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.revision:13
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.update:13
msgid "user : None"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:20
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.clone:13
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.describe:10
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.pull:10
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.revision:13
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.update:13
msgid "Run hg as a user other than what the minion runs as"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:22
msgid ""
"If ``prefix`` is not specified it defaults to the basename of the repo "
"directory."
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.archive:25
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.clone:15
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.describe:12
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.pull:12
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.revision:15
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.update:15
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.clone:1
msgid "Clone a new repository"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.clone:7
msgid "repository"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.clone:7
msgid "The hg URI of the repository"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.clone:10
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.pull:7
msgid "opts : None"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.clone:10
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.pull:7
msgid "Any additional options to add to the command line"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.describe:1
msgid "Mimick git describe and return an identifier for the given revision"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.pull:1
msgid "Perform a pull on the given repository"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.revision:1
msgid ""
"Returns the long hash of a given identifier (hash, branch, tag, HEAD, etc)"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.revision:7
msgid "The revision"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.revision:10
msgid "short: False"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.revision:10
msgid "Return an abbreviated commit hash"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.update:1
msgid "Update to a given revision"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.update:7
msgid "rev"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.update:7
msgid "The revision to update to"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.update:10
msgid "force : False"
msgstr ""
#: ../../../salt/modules/hg.pydocstring of salt.modules.hg.update:10
msgid "Force an update"
msgstr ""

View File

@ -1,62 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.hosts.rst:6
msgid "salt.modules.hosts"
msgstr ""
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts:1
msgid "Manage the information in the hosts file"
msgstr ""
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.add_host:1
msgid ""
"Add a host to an existing entry, if the entry is not in place then create it"
" with the given host"
msgstr ""
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.add_host:4
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.get_alias:3
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.get_ip:3
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.has_pair:3
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.list_hosts:5
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.rm_host:3
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.set_host:4
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.get_alias:1
msgid "Return the list of aliases associated with an ip"
msgstr ""
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.get_ip:1
msgid "Return the ip associated with the named host"
msgstr ""
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.has_pair:1
msgid "Return true if the alias is set"
msgstr ""
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.list_hosts:1
msgid "Return the hosts found in the hosts file in this format::"
msgstr ""
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.rm_host:1
msgid "Remove a host entry from the hosts file"
msgstr ""
#: ../../../salt/modules/hosts.pydocstring of salt.modules.hosts.set_host:1
msgid ""
"Set the host entry in the hosts file for the given ip, this will overwrite "
"any previous entry for the given ip"
msgstr ""

View File

@ -1,64 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.img.rst:6
msgid "salt.modules.img"
msgstr ""
#: ../../../salt/modules/img.pydocstring of salt.modules.img:1
msgid "Virtual machine image management tools"
msgstr ""
#: ../../../salt/modules/img.pydocstring of salt.modules.img.bootstrap:1
msgid "HIGHLY EXPERIMENTAL Bootstrap a virtual machine image"
msgstr ""
#: ../../../salt/modules/img.pydocstring of salt.modules.img.bootstrap:5
msgid "location:"
msgstr ""
#: ../../../salt/modules/img.pydocstring of salt.modules.img.bootstrap:5
msgid "The location to create the image"
msgstr ""
#: ../../../salt/modules/img.pydocstring of salt.modules.img.bootstrap:8
msgid "size:"
msgstr ""
#: ../../../salt/modules/img.pydocstring of salt.modules.img.bootstrap:8
msgid "The size of the image to create in megabytes"
msgstr ""
#: ../../../salt/modules/img.pydocstring of salt.modules.img.bootstrap:11
msgid "fmt:"
msgstr ""
#: ../../../salt/modules/img.pydocstring of salt.modules.img.bootstrap:11
msgid "The image format, raw or qcow2"
msgstr ""
#: ../../../salt/modules/img.pydocstring of salt.modules.img.bootstrap:13
#: ../../../salt/modules/img.pydocstring of salt.modules.img.mnt_image:3
#: ../../../salt/modules/img.pydocstring of salt.modules.img.mount_image:3
#: ../../../salt/modules/img.pydocstring of salt.modules.img.umount_image:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/img.pydocstring of salt.modules.img.mnt_image:1
#: ../../../salt/modules/img.pydocstring of salt.modules.img.mount_image:1
msgid "Mount the named image and return the mount point"
msgstr ""
#: ../../../salt/modules/img.pydocstring of salt.modules.img.umount_image:1
msgid "Unmount an image mountpoint"
msgstr ""

View File

@ -1,159 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.iptables.rst:6
msgid "salt.modules.iptables"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of salt.modules.iptables:1
msgid "Support for iptables"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.append:1
msgid "Append a rule to the specified table/chain."
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.append:6 ../../../salt/modules/iptables.pydocstring
#: of salt.modules.iptables.check:6 ../../../salt/modules/iptables.pydocstring
#: of salt.modules.iptables.delete:7
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.insert:6
msgid "This function accepts a rule in a standard iptables command format,"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.append:4 ../../../salt/modules/iptables.pydocstring
#: of salt.modules.iptables.check:4 ../../../salt/modules/iptables.pydocstring
#: of salt.modules.iptables.delete:5
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.insert:4
msgid ""
"starting with the chain. Trying to force users to adapt to a new method of "
"creating rules would be irritating at best, and we already have a parser "
"that can handle it."
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.append:8 ../../../salt/modules/iptables.pydocstring
#: of salt.modules.iptables.check:8 ../../../salt/modules/iptables.pydocstring
#: of salt.modules.iptables.flush:3 ../../../salt/modules/iptables.pydocstring
#: of salt.modules.iptables.get_policy:3
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.get_rules:3
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.get_saved_rules:3
#: ../../../salt/modules/iptables.pydocstring of salt.modules.iptables.save:3
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.set_policy:3
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.version:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.build_rule:1
msgid ""
"Build a well-formatted iptables rule based on kwargs. Long options must be "
"used (`--jump` instead of `-j`) because they will have the `--` added to "
"them. A `table` and `chain` are not required, unless `full` is True."
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.build_rule:5
msgid ""
"If `full` is `True`, then `table`, `chain` and `command` are required. "
"`command` may be specified as either a short option ('I') or a long option "
"(`--insert`). This will return the iptables command, exactly as it would be "
"used from the command line."
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.build_rule:10
msgid ""
"If a position is required (as with `-I` or `-D`), it may be specified as "
"`position`. This will only be useful if `full` is True."
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.build_rule:13
msgid ""
"If `connstate` is passed in, it will automatically be changed to `state`."
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.build_rule:15
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.delete:9 ../../../salt/modules/iptables.pydocstring
#: of salt.modules.iptables.get_saved_policy:3
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.insert:8
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of salt.modules.iptables.check:1
msgid "Check for the existance of a rule in the table and chain"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.delete:2
msgid ""
"Delete a rule from the specified table/chain, specifying either the rule"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.delete:2
msgid "in its entirety, or the rule's position in the chain."
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of salt.modules.iptables.flush:1
msgid "Flush all chains in the specified table."
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.get_policy:1
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.get_saved_policy:1
msgid "Return the current policy for the specified table/chain"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.get_rules:1
msgid "Return a data structure of the current, in-memory rules"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.get_saved_rules:1
msgid "Return a data structure of the rules in the conf file"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.insert:1
msgid ""
"Insert a rule into the specified table/chain, at the specified position."
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of salt.modules.iptables.save:1
msgid "Save the current in-memory rules to disk"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.set_policy:1
msgid "Set the current policy for the specified table/chain"
msgstr ""
#: ../../../salt/modules/iptables.pydocstring of
#: salt.modules.iptables.version:1
msgid "Return version from iptables --version"
msgstr ""

View File

@ -1,28 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.key.rst:6
msgid "salt.modules.key"
msgstr ""
#: ../../../salt/modules/key.pydocstring of salt.modules.key:1
msgid "Functions to view the minion's public key information"
msgstr ""
#: ../../../salt/modules/key.pydocstring of salt.modules.key.finger:1
msgid "Return the minion's public key fingerprint"
msgstr ""
#: ../../../salt/modules/key.pydocstring of salt.modules.key.finger:3
msgid "CLI Example:"
msgstr ""

View File

@ -1,46 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.keyboard.rst:6
msgid "salt.modules.keyboard"
msgstr ""
#: ../../../salt/modules/keyboard.pydocstring of salt.modules.keyboard:1
msgid "Module for managing keyboards on POSIX-like systems."
msgstr ""
#: ../../../salt/modules/keyboard.pydocstring of
#: salt.modules.keyboard.get_sys:1
msgid "Get current system keyboard setting"
msgstr ""
#: ../../../salt/modules/keyboard.pydocstring of
#: salt.modules.keyboard.get_sys:3 ../../../salt/modules/keyboard.pydocstring
#: of salt.modules.keyboard.get_x:3 ../../../salt/modules/keyboard.pydocstring
#: of salt.modules.keyboard.set_sys:3
#: ../../../salt/modules/keyboard.pydocstring of salt.modules.keyboard.set_x:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/keyboard.pydocstring of salt.modules.keyboard.get_x:1
msgid "Get current X keyboard setting"
msgstr ""
#: ../../../salt/modules/keyboard.pydocstring of
#: salt.modules.keyboard.set_sys:1
msgid "Set current system keyboard setting"
msgstr ""
#: ../../../salt/modules/keyboard.pydocstring of salt.modules.keyboard.set_x:1
msgid "Set current X keyboard setting"
msgstr ""

View File

@ -1,270 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.keystone.rst:6
msgid "salt.modules.keystone"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of salt.modules.keystone:1
msgid "Module for handling openstack keystone calls."
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of salt.modules.keystone:3
msgid "keystoneclient Python adapter"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of salt.modules.keystone:4
msgid ""
"This module is not usable until the following are specified either in a "
"pillar or in the minion's config file::"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of salt.modules.keystone:18
msgid ""
"If configuration for multiple openstack accounts is required, they can be "
"set up as different configuration profiles: For example::"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of salt.modules.keystone:36
msgid ""
"With this configuration in place, any of the keystone functions can make use"
" of a configuration profile by declaring it explicitly. For example::"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of salt.modules.keystone.auth:1
msgid "Set up keystone credentials"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of salt.modules.keystone.auth:3
msgid "Only intended to be used within Keystone-enabled modules"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.ec2_credentials_create:1
msgid "Create EC2-compatibile credentials for user per tenant"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.ec2_credentials_create:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.ec2_credentials_delete:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.ec2_credentials_get:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.ec2_credentials_list:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.role_delete:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.role_get:3 ../../../salt/modules/keystone.pydocstring
#: of salt.modules.keystone.service_create:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.service_delete:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.service_get:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.tenant_create:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.tenant_delete:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.tenant_get:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.tenant_update:5
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_create:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_delete:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_get:3 ../../../salt/modules/keystone.pydocstring
#: of salt.modules.keystone.user_password_update:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_role_add:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_role_list:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_role_remove:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_update:5
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_verify_password:3
msgid "CLI Examples:"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.ec2_credentials_delete:1
msgid "Delete EC2-compatibile credentials"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.ec2_credentials_get:1
msgid "Return ec2_credentials for a user (keystone ec2-credentials-get)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.ec2_credentials_list:1
msgid ""
"Return a list of ec2_credentials for a specific user (keystone ec2"
"-credentials-list)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.endpoint_get:1
msgid "Return a specific endpoint (keystone endpoint-get)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.endpoint_get:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.endpoint_list:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.role_list:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.service_list:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.tenant_list:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.token_get:3
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_list:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.endpoint_list:1
msgid "Return a list of available endpoints (keystone endpoints-list)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.role_create:1
msgid "Create named role"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.role_delete:1
msgid "Delete a role (keystone role-delete)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.role_get:1
msgid "Return a specific roles (keystone role-get)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.role_list:1
msgid "Return a list of available roles (keystone role-list)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.service_create:1
msgid "Add service to Keystone service catalog"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.service_delete:1
msgid "Delete a service from Keystone service catalog"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.service_get:1
msgid "Return a specific services (keystone service-get)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.service_list:1
msgid "Return a list of available services (keystone services-list)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.tenant_create:1
msgid "Create a keystone tenant"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.tenant_delete:1
msgid "Delete a tenant (keystone tenant-delete)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.tenant_get:1
msgid "Return a specific tenants (keystone tenant-get)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.tenant_list:1
msgid "Return a list of available tenants (keystone tenants-list)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.tenant_update:1
msgid ""
"Update a tenant's information (keystone tenant-update) The following fields "
"may be updated: name, email, enabled. Can only update name if targeting by "
"ID"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.token_get:1
msgid "Return the configured tokens (keystone token-get)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_create:1
msgid "Create a user (keystone user-create)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_delete:1
msgid "Delete a user (keystone user-delete)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_get:1
msgid "Return a specific users (keystone user-get)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_list:1
msgid "Return a list of available users (keystone user-list)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_password_update:1
msgid "Update a user's password (keystone user-password-update)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_role_add:1
msgid "Add role for user in tenant (keystone user-role-add)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_role_list:1
msgid "Return a list of available user_roles (keystone user-roles-list)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_role_remove:1
msgid "Remove role for user in tenant (keystone user-role-remove)"
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_update:1
msgid ""
"Update a user's information (keystone user-update) The following fields may "
"be updated: name, email, enabled, tenant. Because the name is one of the "
"fields, a valid user id is required."
msgstr ""
#: ../../../salt/modules/keystone.pydocstring of
#: salt.modules.keystone.user_verify_password:1
msgid "Verify a user's password"
msgstr ""

View File

@ -1,95 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.kmod.rst:6
msgid "salt.modules.kmod"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod:1
msgid "Module to manage Linux kernel modules"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.available:1
msgid "Return a list of all available kernel modules"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.available:3
#: ../../../salt/modules/kmod.pydocstring of
#: salt.modules.kmod.check_available:3 ../../../salt/modules/kmod.pydocstring
#: of salt.modules.kmod.is_loaded:3 ../../../salt/modules/kmod.pydocstring of
#: salt.modules.kmod.load:9 ../../../salt/modules/kmod.pydocstring of
#: salt.modules.kmod.lsmod:3 ../../../salt/modules/kmod.pydocstring of
#: salt.modules.kmod.mod_list:3 ../../../salt/modules/kmod.pydocstring of
#: salt.modules.kmod.remove:13
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of
#: salt.modules.kmod.check_available:1
msgid "Check to see if the specified kernel module is available"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.is_loaded:1
msgid "Check to see if the specified kernel module is loaded"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.load:1
msgid "Load the specified kernel module"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.load:4
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.remove:4
msgid "mod"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.load:4
msgid "Name of module to add"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.load:7
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.remove:7
msgid "persist"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.load:7
msgid "Write module to /etc/modules to make it load on system reboot"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.lsmod:1
msgid "Return a dict containing information about currently loaded modules"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.mod_list:1
msgid "Return a list of the loaded module names"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.remove:1
msgid "Remove the specified kernel module"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.remove:4
msgid "Name of module to remove"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.remove:7
msgid "Also remove module from /etc/modules"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.remove:11
msgid "comment"
msgstr ""
#: ../../../salt/modules/kmod.pydocstring of salt.modules.kmod.remove:10
msgid ""
"If persist is set don't remove line from /etc/modules but only comment it"
msgstr ""

View File

@ -1,70 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.launchctl.rst:6
msgid "salt.modules.launchctl"
msgstr ""
#: ../../../salt/modules/launchctl.pydocstring of salt.modules.launchctl:1
msgid "Module for the management of MacOS systems that use launchd/launchctl"
msgstr ""
#: ../../../salt/modules/launchctl.pydocstring of salt.modules.launchctl:3
msgid "plistlib Python module"
msgstr ""
#: ../../../salt/modules/launchctl.pydocstring of
#: salt.modules.launchctl.available:1
msgid "Check that the given service is available."
msgstr ""
#: ../../../salt/modules/launchctl.pydocstring of
#: salt.modules.launchctl.available:3
#: ../../../salt/modules/launchctl.pydocstring of
#: salt.modules.launchctl.get_all:3
#: ../../../salt/modules/launchctl.pydocstring of
#: salt.modules.launchctl.restart:3
#: ../../../salt/modules/launchctl.pydocstring of
#: salt.modules.launchctl.start:3 ../../../salt/modules/launchctl.pydocstring
#: of salt.modules.launchctl.status:4
#: ../../../salt/modules/launchctl.pydocstring of
#: salt.modules.launchctl.stop:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/launchctl.pydocstring of
#: salt.modules.launchctl.get_all:1
msgid "Return all installed services"
msgstr ""
#: ../../../salt/modules/launchctl.pydocstring of
#: salt.modules.launchctl.restart:1
msgid "Restart the named service"
msgstr ""
#: ../../../salt/modules/launchctl.pydocstring of
#: salt.modules.launchctl.start:1
msgid "Start the specified service"
msgstr ""
#: ../../../salt/modules/launchctl.pydocstring of
#: salt.modules.launchctl.status:1
msgid ""
"Return the status for a service, returns a bool whether the service is "
"running."
msgstr ""
#: ../../../salt/modules/launchctl.pydocstring of
#: salt.modules.launchctl.stop:1
msgid "Stop the specified service"
msgstr ""

View File

@ -1,72 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.layman.rst:6
msgid "salt.modules.layman"
msgstr ""
#: ../../../salt/modules/layman.pydocstring of salt.modules.layman:1
msgid "Support for Layman"
msgstr ""
#: ../../../salt/modules/layman.pydocstring of salt.modules.layman.add:1
msgid ""
"Add the given overlay from the caced remote list to your locally installed "
"overlays. Specify 'ALL' to add all overlays from the remote list."
msgstr ""
#: ../../../salt/modules/layman.pydocstring of salt.modules.layman.add:5
msgid "Return a list of the new overlay(s) added:"
msgstr ""
#: ../../../salt/modules/layman.pydocstring of salt.modules.layman.add:7
#: ../../../salt/modules/layman.pydocstring of salt.modules.layman.delete:6
#: ../../../salt/modules/layman.pydocstring of
#: salt.modules.layman.list_local:5 ../../../salt/modules/layman.pydocstring
#: of salt.modules.layman.sync:7
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/layman.pydocstring of salt.modules.layman.delete:1
msgid ""
"Remove the given overlay from the your locally installed overlays. Specify "
"'ALL' to remove all overlays."
msgstr ""
#: ../../../salt/modules/layman.pydocstring of salt.modules.layman.delete:4
msgid "Return a list of the overlays(s) that were removed:"
msgstr ""
#: ../../../salt/modules/layman.pydocstring of
#: salt.modules.layman.list_local:1
msgid "List the locally installed overlays."
msgstr ""
#: ../../../salt/modules/layman.pydocstring of
#: salt.modules.layman.list_local:3
msgid "Return a list of installed overlays:"
msgstr ""
#: ../../../salt/modules/layman.pydocstring of salt.modules.layman.sync:1
msgid ""
"Update the specified overlay. Use 'ALL' to synchronize all overlays. This is"
" the default if no overlay is specified."
msgstr ""
#: ../../../salt/modules/layman.pydocstring of salt.modules.layman.sync:5
msgid "overlay"
msgstr ""
#: ../../../salt/modules/layman.pydocstring of salt.modules.layman.sync:5
msgid "Name of the overlay to sync. (Defaults to 'ALL')"
msgstr ""

View File

@ -1,66 +0,0 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Salt 0.17.0-799-g9ccf089\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-11 21:20\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../ref/modules/all/salt.modules.ldapmod.rst:6
msgid "salt.modules.ldapmod"
msgstr ""
#: ../../../salt/modules/ldapmod.pydocstring of salt.modules.ldapmod:1
msgid "Salt interface to LDAP commands"
msgstr ""
#: ../../../salt/modules/ldapmod.pydocstring of salt.modules.ldapmod:3
msgid "ldap Python module"
msgstr ""
#: ../../../salt/modules/ldapmod.pydocstring of salt.modules.ldapmod:4
msgid ""
"In order to connect to LDAP, certain configuration is required in the minion"
" config on the LDAP server. The minimum configuration items that must be set"
" are::"
msgstr ""
#: ../../../salt/modules/ldapmod.pydocstring of salt.modules.ldapmod:10
msgid "If your LDAP server requires authentication then you must also set::"
msgstr ""
#: ../../../salt/modules/ldapmod.pydocstring of salt.modules.ldapmod:15
msgid "In addition, the following optional values may be set::"
msgstr ""
#: ../../../salt/modules/ldapmod.pydocstring of salt.modules.ldapmod:25
msgid ""
"At the moment this module only recommends connection to LDAP services "
"listening on ``localhost``. This is deliberate to avoid the potentially "
"dangerous situation of multiple minions sending identical update commands to"
" the same LDAP server. It's easy enough to override this behaviour, but "
"badness may ensue - you have been warned."
msgstr ""
#: ../../../salt/modules/ldapmod.pydocstring of salt.modules.ldapmod.search:1
msgid "Run an arbitrary LDAP query and return the results."
msgstr ""
#: ../../../salt/modules/ldapmod.pydocstring of salt.modules.ldapmod.search:3
msgid "CLI Example:"
msgstr ""
#: ../../../salt/modules/ldapmod.pydocstring of salt.modules.ldapmod.search:9
msgid "Return data:"
msgstr ""
#: ../../../salt/modules/ldapmod.pydocstring of salt.modules.ldapmod.search:20
msgid ""
"Search and connection options can be overridden by specifying the relevant "
"option as key=value pairs, for example:"
msgstr ""

Some files were not shown because too many files have changed in this diff Show More