From e4c267b03dd091ae8acb7b9417839ef7366775dd Mon Sep 17 00:00:00 2001 From: Gilles Mouchet Date: Mon, 20 Jan 2025 12:52:00 +0100 Subject: [PATCH] added epel-release to install python3-passlib --- instsrv.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/instsrv.sh b/instsrv.sh index 41c7868..182eb70 100755 --- a/instsrv.sh +++ b/instsrv.sh @@ -1,7 +1,8 @@ #!/bin/bash # if you are a problem to push the repo. Run 'git config http.postBuffer 524288000' # install requirements -yum install ftp python3-pip tar git python3-passlib -y +dnf install epel-release ftp python3-pip tar git -y +dnf install python3-passlib -y # config git (use only if we must commit a modification) git config --global user.name "Gilles Mouchet"