aboutsummaryrefslogtreecommitdiff
path: root/lib/50-zfs
diff options
context:
space:
mode:
authorCullum Smith <cullum@sacredheartsc.com>2024-07-11 10:55:45 -0400
committerCullum Smith <cullum@sacredheartsc.com>2024-07-11 10:55:45 -0400
commit85007db580ccf662a45cf2aaeb83518ad2ddb85a (patch)
treed692c5bdbaf33c5b9791d538982b17ab4dd808ee /lib/50-zfs
parentde8305223b6079d14ac854ee067ffd069cb38ec7 (diff)
downloadinfrastructure-85007db580ccf662a45cf2aaeb83518ad2ddb85a.tar.gz
initial boxconf scaffolding
Diffstat (limited to 'lib/50-zfs')
-rw-r--r--lib/50-zfs15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/50-zfs b/lib/50-zfs
new file mode 100644
index 0000000..2948601
--- /dev/null
+++ b/lib/50-zfs
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+dataset_exists(){
+ # Check if a ZFS dataset exists.
+ # $1 = dataset name
+ zfs list "$1" > /dev/null 2>&1
+}
+
+create_dataset(){
+ # Create a ZFS dataset if it doesn't already exists.
+ # All options are passed directly to `zfs create`. Assumes the dataset name is
+ # passed as the final argument.
+ eval "_bccd_dataset=\$$#"
+ dataset_exists "$_bccd_dataset" || zfs create -v "$@"
+}