This commit is contained in:
Bart Sjerps
2026-06-09 16:20:53 +02:00
parent e6b8b5325c
commit 7d7938fcc7
2 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -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
Executable
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/python3
import argparse
import crypt
passwd='yahooo'
print(crypt.crypt(passwd, crypt.mksalt(crypt.METHOD_SHA512)))