aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/platform/freebsd.sh
diff options
context:
space:
mode:
authorJonathan Chu <milki@rescomp.berkeley.edu>2012-09-23 09:22:16 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2012-09-23 09:22:16 +0200
commit2e53d994cd2c9e870f0c13be4769fd4ef9510aa8 (patch)
tree10685c61f052fa39f4ba75ee896437659e449409 /src/platform/freebsd.sh
parentInsert comment for fish completion. (diff)
downloadpassword-store-2e53d994cd2c9e870f0c13be4769fd4ef9510aa8.tar.xz
password-store-2e53d994cd2c9e870f0c13be4769fd4ef9510aa8.zip
Add FreeBSD platform file
Redefine GNUPG and GETOPT for port paths Redefine tmpdir() for a different ramdisk path
Diffstat (limited to 'src/platform/freebsd.sh')
-rw-r--r--src/platform/freebsd.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/platform/freebsd.sh b/src/platform/freebsd.sh
new file mode 100644
index 0000000..3900f10
--- /dev/null
+++ b/src/platform/freebsd.sh
@@ -0,0 +1,21 @@
+tmpdir() {
+ ramdisk="/var/tmp/password-store.ramdisk"
+ if [[ -d $ramdisk && -d $ramdisk && -d $ramdisk ]]; then
+ tmp_dir="$(TMPDIR=$ramdisk mktemp -t "$template" -d)"
+ else
+ yesno "$(cat <<PROMPT
+A ramdisk does not exist at
+
+ $ramdisk
+
+which means that it may be difficult to entirely erase
+the temporary non-encrypted password file after editing.
+Are you sure you would like to continue?
+PROMPT
+)"
+ tmp_dir="$(mktemp -t "$template" -d)"
+ fi
+}
+
+GPG="gpg2"
+GETOPT="/usr/local/bin/getopt"