mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2025-04-06 01:31:50 +00:00
fixed issue #3: a simple file check on the key is now performed before creating the tomb
This commit is contained in:
parent
b18ef6c27b
commit
3f0d3dabfc
12
src/tomb
12
src/tomb
@ -311,9 +311,15 @@ create_tomb() {
|
|||||||
tombfile=${tombname}.tomb
|
tombfile=${tombname}.tomb
|
||||||
|
|
||||||
if [ -e ${tombdir}/${tombfile} ]; then
|
if [ -e ${tombdir}/${tombfile} ]; then
|
||||||
error "tomb exists already. I'm not digging here:"
|
error "tomb exists already. I'm not digging here:"
|
||||||
ls -lh ${tombdir}/${tombfile}
|
ls -lh ${tombdir}/${tombfile}
|
||||||
return 1
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -e ${tombdir}/${tombfile}.key ]; then
|
||||||
|
error "tomb key already exists. Quitting."
|
||||||
|
ls -lh ${tombdir}/${tombfile}.key
|
||||||
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
notice "Creating a new tomb in ${tombdir}/${tombfile}"
|
notice "Creating a new tomb in ${tombdir}/${tombfile}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user