aboutgitcodelistschat:MatrixIRC
path: root/demo/mknod.hjson.bak
diff options
context:
space:
mode:
authorAlice Frosi <afrosi@redhat.com>2023-06-19 14:28:45 +0200
committerAlice Frosi <afrosi@redhat.com>2023-06-28 14:21:26 +0200
commit4a1430ac3c60b5ff1c00bf98c004351c67c26c23 (patch)
tree648273310014d06e5e42f6b850866afbae653057 /demo/mknod.hjson.bak
parent64d64ab33a7cb073492013258ed3e465d3358cbd (diff)
downloadseitan-4a1430ac3c60b5ff1c00bf98c004351c67c26c23.tar
seitan-4a1430ac3c60b5ff1c00bf98c004351c67c26c23.tar.gz
seitan-4a1430ac3c60b5ff1c00bf98c004351c67c26c23.tar.bz2
seitan-4a1430ac3c60b5ff1c00bf98c004351c67c26c23.tar.lz
seitan-4a1430ac3c60b5ff1c00bf98c004351c67c26c23.tar.xz
seitan-4a1430ac3c60b5ff1c00bf98c004351c67c26c23.tar.zst
seitan-4a1430ac3c60b5ff1c00bf98c004351c67c26c23.zip
Update demos
Diffstat (limited to 'demo/mknod.hjson.bak')
-rw-r--r--demo/mknod.hjson.bak33
1 files changed, 33 insertions, 0 deletions
diff --git a/demo/mknod.hjson.bak b/demo/mknod.hjson.bak
new file mode 100644
index 0000000..7055aee
--- /dev/null
+++ b/demo/mknod.hjson.bak
@@ -0,0 +1,33 @@
+[
+ {
+ "match": [ /* Giuseppe's example */
+ { "mknodat":
+ { "path": { "tag": "path" },
+ "mode": { "tag": "mode" },
+ "type": { "tag": "type" },
+ "major": 1,
+ "minor": { "value": { "in": [ 3, 5, 7, 8, 9 ] }, "tag": "minor" }
+ }
+ },
+ { "mknod":
+ { "path": { "tag": "path" },
+ "mode": { "tag": "mode" },
+ "type": { "tag": "type" },
+ "major": 1,
+ "minor": { "value": { "in": [ 3, 5, 7, 8, 9 ] }, "tag": "minor" }
+ }
+ }
+ ],
+ "call":
+ { "mknod":
+ { "path": { "tag": { "get": "path" } },
+ "mode": { "tag": { "get": "mode" } },
+ "type": { "tag": { "get": "type" } },
+ "major": 1,
+ "minor": { "tag": { "get": "minor" } }
+ },
+ "context": { "mnt": "caller" }
+ },
+ "return": { "value": 0 }
+ }
+]