Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3717332
D1684.id4288.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D1684.id4288.diff
View Options
diff --git a/_modules/convert.py b/_modules/convert.py
new file mode 100644
--- /dev/null
+++ b/_modules/convert.py
@@ -0,0 +1,36 @@
+# -*- coding: utf-8 -*-
+
+# -------------------------------------------------------------
+# Salt — Convert execution module
+# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+# Project: Nasqueron
+# Created: 2018-09-08
+# Description: Functions related to data format conversions
+# License: BSD-2-Clause
+# -------------------------------------------------------------
+
+
+import json
+
+
+def to_json_from_pillar_key(key):
+ '''
+ A function to output a pillar key in JSON.
+
+ CLI Example::
+
+ salt-call --local convert.to_json "Hello world"
+ '''
+ data = __pillar__.get(key, {})
+ return to_json(data)
+
+
+def to_json(data):
+ '''
+ A function to convert data to JSON.
+
+ CLI Example::
+
+ salt-call --local convert.to_json "Hello world"
+ '''
+ return json.dumps(data, indent=4, sort_keys=True)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Nov 7, 03:32 (20 h, 51 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2231931
Default Alt Text
D1684.id4288.diff (1 KB)
Attached To
Mode
D1684: Provide Salt module to convert data
Attached
Detach File
Event Timeline
Log In to Comment