aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-01-07 13:35:26 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2023-01-07 13:35:26 +0100
commit3ef756ce9b1e1cad04cb38645c6bffdb26accded (patch)
tree3865be08ef7ffd1063de96538a5d5140e1f164a4
parenttor 15 dec 2022 04:36:49 CET (diff)
downloadwiki-public-3ef756ce9b1e1cad04cb38645c6bffdb26accded.tar.gz
wiki-public-3ef756ce9b1e1cad04cb38645c6bffdb26accded.tar.xz
lör 7 jan 2023 13:35:26 CET
-rw-r--r--puppet.wiki8
-rw-r--r--systemd.wiki5
2 files changed, 12 insertions, 1 deletions
diff --git a/puppet.wiki b/puppet.wiki
index 63c43c3..b87988c 100644
--- a/puppet.wiki
+++ b/puppet.wiki
@@ -110,3 +110,11 @@ puppet apply --modulepath=/etc/puppetlabs/code/environments/<ENVIRONMENT>/module
== autonotify ==
lib/puppet/transaction/event_manager.rb
lib/puppet/graph/relationship_graph.rb:192
+
+
+= Abstract Data Types =
+https://www.puppet.com/docs/puppet/7/lang_data_abstract.html
+
+- `Optional[_<type>_]`
+- `NotUndef[_<type>_]` :: Any - undef
+- `Variant[_<type>_, _<type>_ ...]` :: one of
diff --git a/systemd.wiki b/systemd.wiki
index ed372c3..42fb8c2 100644
--- a/systemd.wiki
+++ b/systemd.wiki
@@ -1,4 +1,7 @@
-systemctl list-dependencies <name>.target
+= Show dependencies of target =
+{{{sh
+systemctl list-dependencies <name>.target
systemctl list-dependencies --user graphical-session.target
+}}}