unlock bw

This commit is contained in:
Gabriel Augendre 2024-02-18 16:12:04 +01:00
parent 6b992478fc
commit 0342ab1ed7
5 changed files with 33 additions and 50 deletions

View file

@ -1,3 +1,10 @@
function bwunlock function bwunlock
set -g BW_SESSION (bw unlock --raw) set -x NODE_OPTIONS "--no-deprecation"
if not bw login --check
set -gx BW_SESSION (bw login --raw)
end
if not bw unlock --check
set -gx BW_SESSION (bw unlock --raw)
end
end end

View file

@ -1,11 +1,4 @@
function chezmoiapply function chezmoiapply
set -x NODE_OPTIONS "--no-deprecation" bwunlock
if not bw login --check
set -x BW_SESSION (bw login --raw)
end
if not bw unlock --check
set -x BW_SESSION (bw unlock --raw)
end
chezmoi apply chezmoi apply
end end

View file

@ -1,10 +1,4 @@
function chezmoiupdate function chezmoiupdate
set -x NODE_OPTIONS "--no-deprecation" bwunlock
if not bw login --check
set -x BW_SESSION (bw login --raw)
end
if not bw unlock --check
set -x BW_SESSION (bw unlock --raw)
end
chezmoi update chezmoi update
end end

View file

@ -1,10 +1,5 @@
function fetchkeys function fetchkeys
if not bw login --check bwunlock
set -x BW_SESSION (bw login --raw)
end
if not bw unlock --check
set -x BW_SESSION (bw unlock --raw)
end
set key_item (bw list items --search "SSH Main" | jq ".[0]" --raw-output) set key_item (bw list items --search "SSH Main" | jq ".[0]" --raw-output)
set key_item_id (echo $key_item | jq ".id" --raw-output) set key_item_id (echo $key_item | jq ".id" --raw-output)
set key1 (echo $key_item | jq ".attachments[0]" --raw-output) set key1 (echo $key_item | jq ".attachments[0]" --raw-output)

View file

@ -1,11 +1,5 @@
function upgrade --wraps=topgrade function upgrade --wraps=topgrade
set -x NODE_OPTIONS "--no-deprecation" bwunlock
if not bw login --check
set -x BW_SESSION (bw login --raw)
end
if not bw unlock --check
set -x BW_SESSION (bw unlock --raw)
end
{{- if get . "sudo" }} {{- if get . "sudo" }}
sudo ls >/dev/null sudo ls >/dev/null
{{- end }} {{- end }}