diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-10-18 23:40:17 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-10-18 23:40:17 +0200 |
commit | be161cc59f2539adaa3f48e255dfcd68b005029f (patch) | |
tree | debf046aeecc16ac917dfbe0092b864f1d97856d /bin | |
parent | e7ff95d1e94d4543e632b0ddd823e03a17e23112 (diff) | |
download | jenkins.debian.net-be161cc59f2539adaa3f48e255dfcd68b005029f.tar.xz |
reproducible OpenWrt/LEDE: rename common.sh to lede_common.sh to reflect their realities & update my copyright years on this code
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_lede.sh | 3 | ||||
-rw-r--r-- | bin/reproducible_lede_common.sh (renamed from bin/reproducible_openwrt_common.sh) | 2 | ||||
-rwxr-xr-x | bin/reproducible_openwrt.sh | 5 |
3 files changed, 6 insertions, 4 deletions
diff --git a/bin/reproducible_lede.sh b/bin/reproducible_lede.sh index 1e824db0..8f44ea49 100755 --- a/bin/reproducible_lede.sh +++ b/bin/reproducible_lede.sh @@ -13,7 +13,8 @@ common_init "$@" # common code defining db access . /srv/jenkins/bin/reproducible_common.sh -. /srv/jenkins/bin/reproducible_openwrt_common.sh +# common code defining functions for OpenWrt/LEDE +. /srv/jenkins/bin/reproducible_lede_common.sh set -e echo "$0 got called with '$@'" diff --git a/bin/reproducible_openwrt_common.sh b/bin/reproducible_lede_common.sh index c81e4f9d..0dd7de91 100644 --- a/bin/reproducible_openwrt_common.sh +++ b/bin/reproducible_lede_common.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2014-2015 Holger Levsen <holger@layer-acht.org> +# Copyright 2014-2016 Holger Levsen <holger@layer-acht.org> # © 2015 Reiner Herrmann <reiner@reiner-h.de> # 2016 Alexander Couzens <lynxis@fe80.eu> # released under the GPLv=2 diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh index 53177b1a..e8d6b5d4 100755 --- a/bin/reproducible_openwrt.sh +++ b/bin/reproducible_openwrt.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright 2014-2015 Holger Levsen <holger@layer-acht.org> +# Copyright 2014-2016 Holger Levsen <holger@layer-acht.org> # © 2015 Reiner Herrmann <reiner@reiner-h.de> # 2016 Alexander Couzens <lynxis@fe80.eu> # released under the GPLv=2 @@ -13,7 +13,8 @@ common_init "$@" # common code defining db access . /srv/jenkins/bin/reproducible_common.sh -. /srv/jenkins/bin/reproducible_openwrt_common.sh +# common code defining functions for OpenWrt/LEDE +. /srv/jenkins/bin/reproducible_lede_common.sh set -e echo "$0 got called with '$@'" |