From 5f2668f0fe817f57ad1980f739d8bea8f165c62a Mon Sep 17 00:00:00 2001
From: Nico Schottelius <nico@bento.schottelius.org>
Date: Tue, 23 Apr 2013 23:10:16 +0200
Subject: [PATCH] +cdist hint

Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
---
 blog/cdist-hint-apply-single-object.mdwn | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 blog/cdist-hint-apply-single-object.mdwn

diff --git a/blog/cdist-hint-apply-single-object.mdwn b/blog/cdist-hint-apply-single-object.mdwn
new file mode 100644
index 00000000..a129b049
--- /dev/null
+++ b/blog/cdist-hint-apply-single-object.mdwn
@@ -0,0 +1,14 @@
+[[!meta title="Cdist: How to apply a single object"]]
+
+Sometime it would be nice if you could only apply a single
+object on a remote host, like this:
+
+    __file /need/this/now --state present --source $(pwd -P)/myfile --mode 0755
+
+Using the initial manifest option (-i) and stdin makes this easy:
+
+    echo __file /need/this/now --state present --source $(pwd -P)/myfile --mode 0755 | cdist config -v -i - targethost
+
+For more information about cdist visit the [[cdist homepage|software/cdist]].
+
+[[!tag cdist config unix]]