This article demonstrates how to install Fedora Linux on MacOS.
Specifically we will use
- a macbook with m1 (arm/apple silicon) processor & 32GB ram
- macOS Sonoma 14.0
- Fedora Linux beta
- UTM as the virtualization tool
This article demonstrates how to install Fedora Linux on MacOS.
Specifically we will use
--- | |
plugin_routing: | |
cliconf: | |
classic: | |
redirect: nokia.sros.classic | |
light: | |
redirect: nokia.sros.light | |
md: | |
redirect: nokia.sros.md | |
terminal: |
from __future__ import absolute_import, division, print_function | |
__metaclass__ = type | |
DOCUMENTATION = """ | |
module: sample_choices | |
short_description: Demo case insensitive choices. | |
description: | |
- Demo case insensitive choices. |
% git diff package.json | |
diff --git a/package.json b/package.json | |
index 1b192b2..428b13b 100644 | |
--- a/package.json | |
+++ b/package.json | |
@@ -191,6 +191,10 @@ | |
"test": "mocha --require ts-node/register './server/src/test/**/*.ts'", | |
"deploy": "vsce publish" | |
}, | |
+ "dependencies": { |
--- | |
- hosts: junos | |
gather_facts: no | |
connection: ansible.netcommon.netconf | |
tasks: | |
- name: run show command rpc | |
junipernetworks.junos.junos_command: | |
rpcs: get-l2ckt-connection-information | |
register: result |
$git diff lib/ansible/plugins/netconf/__init__.py | |
diff --git a/lib/ansible/plugins/netconf/__init__.py b/lib/ansible/plugins/netconf/__init__.py | |
index 95442e60e9..24d04c6b82 100644 | |
--- a/lib/ansible/plugins/netconf/__init__.py | |
+++ b/lib/ansible/plugins/netconf/__init__.py | |
@@ -32,8 +32,11 @@ try: | |
from ncclient.xml_ import to_xml, to_ele, NCElement | |
HAS_NCCLIENT = True | |
NCCLIENT_IMP_ERR = None | |
-except (ImportError, AttributeError) as err: # paramiko and gssapi are incompatible and raise AttributeError not ImportError |
--- | |
- hosts: localhost | |
connection: local | |
gather_facts: false | |
tasks: | |
- name: set sample xml string | |
set_fact: | |
xml_var: | | |
<a> | |
<foo>test</foo> |
{ | |
"patternProperties": { | |
".*" : { "$ref" : "#/definitions/router" } | |
}, | |
"minProperties": 1, | |
"definitions": { | |
"router" : { | |
"type" : "object", | |
"properties": { | |
"bgp_as": { |
- name: validate bgp data data with jsonschema bgp model criteria | |
ansible.utils.validate: | |
data: "{{ hostvars }}" | |
criteria: | |
- "{{ lookup('file', './criterias/bgp_data_model_criteria.json') | from_json }}" | |
engine: ansible.utils.jsonschema | |
register: result |