From 7d7938fcc7694a83e5ef800627e212d6301e02e3 Mon Sep 17 00:00:00 2001 From: Bart Sjerps Date: Tue, 9 Jun 2026 16:20:53 +0200 Subject: [PATCH] update --- bin/make-rocky | 2 +- bin/makepass | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100755 bin/makepass diff --git a/bin/make-rocky b/bin/make-rocky index dc8081d..e7617fb 100755 --- a/bin/make-rocky +++ b/bin/make-rocky @@ -9,5 +9,5 @@ die() { echo "$(basename $0): [die] $@" >&2 ; exit 1 ; } rpm -q --quiet lorax || die "lorax not installed" rpm -q --quiet genisoimage || die "genisoimage not installed" -mkksiso --skip-mkefiboot --ks=$ks $isopath custom.iso +sudo mkksiso --ks=$ks $isopath custom.iso diff --git a/bin/makepass b/bin/makepass new file mode 100755 index 0000000..7052335 --- /dev/null +++ b/bin/makepass @@ -0,0 +1,9 @@ +#!/usr/bin/python3 + +import argparse +import crypt + +passwd='yahooo' + +print(crypt.crypt(passwd, crypt.mksalt(crypt.METHOD_SHA512))) +