summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-08-25 19:37:30 -0400
committerJune McEnroe <june@causal.agency>2020-08-25 19:37:30 -0400
commit47e3f9a3160edbeaaf4394944b1d6a5f0a83a8bc (patch)
treea89ec54c375e2eceb1cfd193bcad782f8f09dc05
parentRemove deprecated option names (diff)
downloadpounce-47e3f9a3160edbeaaf4394944b1d6a5f0a83a8bc.tar.gz
pounce-47e3f9a3160edbeaaf4394944b1d6a5f0a83a8bc.zip
Support the pounce_env rc variable
-rw-r--r--pounce.116
-rw-r--r--rc.d/pounce.in1
2 files changed, 3 insertions, 14 deletions
diff --git a/pounce.1 b/pounce.1
index 518f410..419400b 100644
--- a/pounce.1
+++ b/pounce.1
@@ -550,20 +550,8 @@ to enable the
 daemon:
 .Bd -literal -offset indent
 pounce_enable="YES"
-.Ed
-.
-.Pp
-By default,
-the
-.Nm
-daemon is started in the
-.Pa /usr/local/etc/pounce
-directory.
-Configuration files in that location
-can be loaded by setting
-.Va pounce_flags :
-.Bd -literal -offset indent
-pounce_flags="example.conf"
+pounce_user="user"
+pounce_env="HOME=/home/user"
 .Ed
 .
 .Pp
diff --git a/rc.d/pounce.in b/rc.d/pounce.in
index 99ed016..b8dda40 100644
--- a/rc.d/pounce.in
+++ b/rc.d/pounce.in
@@ -33,6 +33,7 @@ if [ -n "$2" ]; then
 		eval pounce_flags="\${pounce_${profile}_flags:-${pounce_flags}}"
 		eval pounce_chdir="\${pounce_${profile}_chdir:-${pounce_chdir}}"
 		eval pounce_user="\${pounce_${profile}_user:-${pounce_user}}"
+		eval pounce_env="\${pounce_${profile}_env:-${pounce_env}}"
 	else
 		echo "$0: extra argument ignored"
 	fi
before applying -v or -eJune McEnroe Otherwise a bind -v in .editrc will take precedence and overwrite the ^I binding for sh-complete. 2019-12-20Disable signing commitsJune McEnroe Why did I ever turn this on? This gets me nothing but inconvenience. RIP to all the wasted bytes in my git repos. 2019-12-19Ignore about-filterJune McEnroe 2019-12-19Fix matching make tags with no sourcesJune McEnroe 2019-12-19Avoid matching := assignments as tagsJune McEnroe 2019-12-18Hide line numbers when rendering mdocJune McEnroe Hack: output an extra <td> after rendering mdoc so that line numbers can be hidden based on there being three. This required splitting source-filter and about-filter since on about pages there is no table. 2019-12-18Customize cgit CSSJune McEnroe 2019-12-18Use :target rather than :focus pseudo-classJune McEnroe :target persists after you click on something else. 2019-12-18Copy cgit auxiliary binaries properlyJune McEnroe 2019-12-18Add git.causal.agency cgit configJune McEnroe 2019-12-18Bail from hi if input is binaryJune McEnroe NULs in the input cause an infinite loop in htmlEscape, not to mention regexes obviously not working, etc. 2019-12-16Post "cgit setup"June McEnroe