Merge branch '2.3' into 2.4

This commit is contained in:
Johan Wikman 2020-07-10 09:53:23 +03:00
commit eb41562887
2 changed files with 61 additions and 56 deletions

61
script/maxscale-set-change-date Executable file
View File

@ -0,0 +1,61 @@
#!/bin/bash
#
# Copyright (c) 2016 MariaDB Corporation Ab
#
# Use of this software is governed by the Business Source License included
# in the LICENSE.TXT file and at www.mariadb.com/bsl11.
#
# Change Date: 2020-01-01
#
# On the date above, in accordance with the Business Source License, use
# of this software will be governed by version 2 or later of the General
# Public License.
#
SCRIPT="$(cd -P "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
MAXSCALE_ROOT=${SCRIPT}/..
DIRS="avro client connectors Documentation etc examples include maxctrl maxscale-system-test maxutils query_classifier script rabbitmq_consumer server"
function check_dirs
{
for d in ${DIRS}
do
if [ ! -d $d ]
then
echo "error: Seems like DIRS must be updated."
exit 1
fi
done
}
function print_usage_and_exit
{
echo "usage: maxscale-set-change-date change-date"
echo
echo "Example: maxscale-set-change-date 2020-07-09"
echo
echo "This script will set the change date in all files in the"
echo "following directories: $DIRS"
exit 1
}
function main
{
if [ $# -ne 1 ]
then
print_usage_and_exit
fi
cd $MAXSCALE_ROOT
check_dirs
${SCRIPT}/set-change-date -c $1 ${DIRS}
echo
echo "Remember to update the Change Date in the LICENSE file."
}
main $*

View File

@ -1,56 +0,0 @@
#!/bin/bash
#
# Copyright (c) 2016 MariaDB Corporation Ab
#
# Use of this software is governed by the Business Source License included
# in the LICENSE.TXT file and at www.mariadb.com/bsl11.
#
# Change Date: 2024-07-07
#
# On the date above, in accordance with the Business Source License, use
# of this software will be governed by version 2 or later of the General
# Public License.
#
function print_usage_and_exit
{
echo "update-change-date from to"
echo
echo " from: Old change date, e.g. 2019-01-01"
echo " to : New change date, e.g. 2019-07-01"
exit 1
}
function run
{
local from="Change Date: "$1
local to="Change Date: "$2
local files=`find . -type f`
for f in $files
do
fgrep -q "$from" $f 2> /dev/null
if [ $? -eq 0 ]
then
echo $f
sed -i -e "s/$from/$to/" $f
fi
done
}
function main
{
if [ $# -ne 2 ]
then
print_usage_and_exit
fi
run $1 $2
echo
echo "Remember to update LICENSE.TXT as well."
}
main $*