Set stable shebang

This commit is contained in:
York-Simon Johannsen 2023-06-08 12:59:00 +02:00
parent 2129ed845b
commit 9e51a89fb2
No known key found for this signature in database
GPG key ID: 006F8812A4B527D9
6 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Shell created by Raven for BorgWarehouse.
# This shell takes 3 arguments : [reponame] X [SSH pub key] X [quota]

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Shell created by Raven for BorgWarehouse.
# This shell takes 1 arg : [user] with 8 char. length only.

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Shell created by Raven for BorgWarehouse.
# Get the timestamp of the last modification of the file integrity.* for of all repositories in a JSON output.

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Shell created by Raven for BorgWarehouse.
# Get the size of all repositories in a JSON output.

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
##############################################################################################################
# What is this script ?

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Shell created by Raven for BorgWarehouse.
# This shell takes 2 args : [user] [new SSH pub key] [quota]
@ -25,7 +25,7 @@ then
exit 2
fi
# Check if username length is 8 char. With createRepo.sh our randoms have a length of 8 characters.
# Check if username length is 8 char. With createRepo.sh our randoms have a length of 8 characters.
# If we receive another length there is necessarily a problem.
username=$1
if [ ${#username} != 8 ]