aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-05-25 12:49:01 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-05-25 12:49:01 -0700
commit510df766f8289056725a8d132f099714e72bf57c (patch)
tree51562b8574b848e347521582916623eb321cc103
parentaf8737025f27927fa27b9173c37d10145b1a8785 (diff)
downloadconsfigurator-510df766f8289056725a8d132f099714e72bf57c.tar.gz
USER:HAS-ACCOUNT: note that uses getent(1)
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--src/property/user.lisp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/property/user.lisp b/src/property/user.lisp
index 416ab6a..8e900b5 100644
--- a/src/property/user.lisp
+++ b/src/property/user.lisp
@@ -20,7 +20,8 @@
(named-readtables:in-readtable :consfigurator)
(defprop has-account :posix (username)
- "Ensure there is an account for USERNAME."
+ "Ensure there is an account for USERNAME.
+Note that this uses getent(1) and so is not strictly POSIX-compatible."
(:desc #?"Account for ${username}")
(:check
(user-exists username))