diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/nextcloud-backup | 3 | ||||
-rwxr-xr-x | bin/nextcloud-update | 3 | ||||
-rwxr-xr-x | bin/nextcloud-upgrade | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/bin/nextcloud-backup b/bin/nextcloud-backup index b64175c..ca81896 100755 --- a/bin/nextcloud-backup +++ b/bin/nextcloud-backup @@ -3,6 +3,9 @@ # This script is mostly included "as is", I did this quite a while ago and (also see todo remarks) # I'm not happy yet, but it works fine and the core mechanisms are swell. # +# AUTHOR: coding@lirion.de +# LICENCE: LGPL-3.0-only +# # shellcheck disable=SC1091 source /etc/lirion/nextcloud.conf || exit 1 # shellcheck disable=SC1091 diff --git a/bin/nextcloud-update b/bin/nextcloud-update index f0f399c..47c0b7e 100755 --- a/bin/nextcloud-update +++ b/bin/nextcloud-update @@ -23,6 +23,9 @@ # 4. ??? # 5. Profit! # +# AUTHOR: coding@lirion.de +# LICENCE: LGPL-3.0-only +# # P.S.: "coders" actually refer to the people who made these stupid decisions and the people coding # the feeble parts of updater.phar - Nextcloud itself is still a nice product, it's just # a bit poisoned by morons who want to make the lifes of destructive hackers easier. diff --git a/bin/nextcloud-upgrade b/bin/nextcloud-upgrade index 7b222de..b805afd 100755 --- a/bin/nextcloud-upgrade +++ b/bin/nextcloud-upgrade @@ -1,5 +1,8 @@ #!/usr/bin/env bash +# AUTHOR: coding@lirion.de +# LICENCE: LGPL-3.0-only + # Error codes: 131-159 (130 is reserved for sigint et al!) [ -z "$1" ] && printf 'Usage: %b VERSION\n' "$(basename "$0")" >&2 && exit 101 |