Changed mkpasswd to same version as AUR

also add version-info in script-file
This commit is contained in:
Helmut Stult 2019-04-19 22:49:23 +02:00
parent 1a01d71126
commit 19a317dfee
2 changed files with 6 additions and 2 deletions

View File

@ -14,7 +14,7 @@ This script is "interactive". Meaning that it asks you questions when run to cus
* parted * parted
* libarchive * libarchive
* binfmt-qemu-static * binfmt-qemu-static
* mkpasswd * debian-whois-mkpasswd
* gawk * gawk
## Installing: ## Installing:

View File

@ -1,5 +1,9 @@
#! /bin/bash #! /bin/bash
# *****************************
# Version 1.0.1
# *****************************
# Set globals # Set globals
TMPDIR=/var/tmp/manjaro-arm-installer TMPDIR=/var/tmp/manjaro-arm-installer
ARCH='aarch64' ARCH='aarch64'
@ -48,7 +52,7 @@ if [ ! -f /usr/bin/git ]; then
echo "bsdtar command is missing! Please install libarchive!" echo "bsdtar command is missing! Please install libarchive!"
exit 1 exit 1
elif [ ! -f /usr/bin/mkpasswd ]; then elif [ ! -f /usr/bin/mkpasswd ]; then
echo "mkpasswd command is missing! Please install mkpasswd!" echo "mkpasswd command is missing! Please install debian-whois-mkpasswd!"
exit 1 exit 1
elif [ ! -f /usr/bin/awk ]; then elif [ ! -f /usr/bin/awk ]; then
echo "awk command is missing! Please install gawk!" echo "awk command is missing! Please install gawk!"