Retab secmount script
This commit is contained in:
parent
25e31beaff
commit
2d3c72d3d3
1 changed files with 14 additions and 12 deletions
26
bin/secmount
26
bin/secmount
|
@ -5,23 +5,25 @@ title="SecMount"
|
|||
target=$(realpath "$1")
|
||||
if ! [ -d "$target" ]
|
||||
then
|
||||
echo "Directory '$(basename "$target")' does not exist!"
|
||||
exit 1
|
||||
echo "Directory '$(basename "$target")' does not exist!"
|
||||
exit 1
|
||||
fi
|
||||
back="$(dirname "$target")/.$(basename "$target")"
|
||||
if ! [ -d "$back" ]
|
||||
then
|
||||
mkdir -p "$back"
|
||||
passwd=$(zenity --password --title $title)
|
||||
if zenity --question --title $title --text "Save password in login keyring?"
|
||||
then echo -n $passwd | secret-tool store --label "SecureFS $target" application securefs directory "$target"
|
||||
fi
|
||||
echo -n $passwd | securefs c "$back"
|
||||
mkdir -p "$back"
|
||||
passwd=$(zenity --password --title $title)
|
||||
if zenity --question --title $title --text "Save password in login keyring?"
|
||||
then
|
||||
echo 'echo -n $passwd | secret-tool store --label "SecureFS $target" application securefs directory "$target"'
|
||||
echo -n $passwd | secret-tool store --label "SecureFS $target" application securefs directory "$target"
|
||||
fi
|
||||
echo -n $passwd | securefs c "$back"
|
||||
else
|
||||
passwd=$(secret-tool lookup application securefs directory "$target")
|
||||
if [ -z "$passwd" ]
|
||||
then passwd=$(zenity --password --title $title)
|
||||
fi
|
||||
passwd=$(secret-tool lookup application securefs directory "$target")
|
||||
if [ -z "$passwd" ]
|
||||
then passwd=$(zenity --password --title $title)
|
||||
fi
|
||||
fi
|
||||
|
||||
exec echo -n $passwd | securefs mount "$back" "$target"
|
||||
|
|
Loading…
Reference in a new issue