mirror of
https://github.com/Kron4ek/Conty
synced 2024-11-16 19:50:06 +01:00
Add more command checks
This commit is contained in:
parent
3611017c71
commit
8813e12b4c
1 changed files with 11 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Dependencies: wget tar gzip
|
||||
# Dependencies: wget tar gzip grep sha256sum
|
||||
# Root rights are required
|
||||
|
||||
if [ $EUID != 0 ]; then
|
||||
|
@ -19,6 +19,16 @@ if ! command -v gzip 1>/dev/null; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if ! command -v grep 1>/dev/null; then
|
||||
echo "grep is required!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! command -v sha256sum 1>/dev/null; then
|
||||
echo "sha256sum is required!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
script_dir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
|
||||
|
||||
mount_chroot () {
|
||||
|
|
Loading…
Reference in a new issue