aboutsummaryrefslogtreecommitdiffstats
path: root/config.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-02-01 17:41:31 +0100
committerMattias Andrée <maandree@kth.se>2021-02-01 17:41:31 +0100
commit6e48590a4b26fad71d6a0b3320f59d696dbcdeb5 (patch)
treec134d9e4b9c13deb7ec181be18a18344d9843f3b /config.mk
parentFix exit value (diff)
downloadasroot-6e48590a4b26fad71d6a0b3320f59d696dbcdeb5.tar.gz
asroot-6e48590a4b26fad71d6a0b3320f59d696dbcdeb5.tar.bz2
asroot-6e48590a4b26fad71d6a0b3320f59d696dbcdeb5.tar.xz
Add customisation instructions to config.mk, rename ERROR_SLEEP to RETRY_SLEEP, and remove sleep instruction if RETRY_SLEEP is nonpositive
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/config.mk b/config.mk
index 47b82f7..90c3672 100644
--- a/config.mk
+++ b/config.mk
@@ -5,4 +5,17 @@ CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SOURCE
CFLAGS = -std=c99 -Wall -O2 $(CPPFLAGS)
LDFLAGS = -s -lcrypt
+
# To use libpassphrase, add -DWITH_LIBPASSPHRASE to CPPFLAGS and -lpassphrase to LDFLAGS
+
+# To customise the sleep time between authentication attempts, add -DRETRY_SLEEP=###
+# to CPPFLAGS, where ### is the number of seconds (integers only) to sleep, the
+# default ### is 1 (= 1 second)
+
+# To customise the password prompt, add -DPROMPT=### to CPPFLAGS, where ### is the
+# format string and arguments for fprintf(3), do not forget quotes to escape spaces,
+# the default ### is (with the surrounding quotes)
+# '"%s (%s@%s) password: ", argv0, pwd->pw_name, hostname'
+# argv0 is the name of the process,
+# pwd->pw_name is the user name, and
+# hostname is the machine name