A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://raw.github.com/cfengine/core/master/examples/inline-yaml.cf below:

#+begin_src cfengine3 bundle agent example_inline_yaml # @brief Example illustrating inline yaml { vars: # YAML requires "---" header (followed by newline) # NOTE \n is not interpreted as a newline, instead use $(const.n) "yaml_multi_line" data => '--- - "CFEngine Champions": - Name: "Aleksey Tsalolikhin" Year: 2011 - Name: "Ted Zlatanov" Year : 2013'; "yaml_single_line" data => '---$(const.n)- key1: value1$(const.n)- key2: value2'; reports: "Data container defined from yaml_multi_line: $(with)" with => storejson( @(yaml_multi_line) ); "Data container defined from yaml_single_line: $(with)" with => storejson( @(yaml_single_line) ); } bundle agent __main__ { methods: "example_inline_yaml"; } #+end_src ############################################################################### #+begin_src example_output #@ ``` #@ R: Data container defined from yaml_multi_line: [ #@ { #@ "CFEngine Champions": [ #@ { #@ "Name": "Aleksey Tsalolikhin", #@ "Year": 2011 #@ }, #@ { #@ "Name": "Ted Zlatanov", #@ "Year": 2013 #@ } #@ ] #@ } #@ ] #@ R: Data container defined from yaml_single_line: [ #@ { #@ "key1": "value1" #@ }, #@ { #@ "key2": "value2" #@ } #@ ] #@ ``` #+end_src

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4