From 19a317dfeee06d56b1b870dd341d5e99c0cc6d63 Mon Sep 17 00:00:00 2001 From: Helmut Stult Date: Fri, 19 Apr 2019 22:49:23 +0200 Subject: [PATCH] Changed mkpasswd to same version as AUR also add version-info in script-file --- README.md | 2 +- manjaro-arm-installer | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5597647..abcfc78 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This script is "interactive". Meaning that it asks you questions when run to cus * parted * libarchive * binfmt-qemu-static -* mkpasswd +* debian-whois-mkpasswd * gawk ## Installing: diff --git a/manjaro-arm-installer b/manjaro-arm-installer index 969fe97..8a9a4ce 100755 --- a/manjaro-arm-installer +++ b/manjaro-arm-installer @@ -1,5 +1,9 @@ #! /bin/bash +# ***************************** +# Version 1.0.1 +# ***************************** + # Set globals TMPDIR=/var/tmp/manjaro-arm-installer ARCH='aarch64' @@ -48,7 +52,7 @@ if [ ! -f /usr/bin/git ]; then echo "bsdtar command is missing! Please install libarchive!" exit 1 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 elif [ ! -f /usr/bin/awk ]; then echo "awk command is missing! Please install gawk!"