79 lines
1.7 KiB
Bash
Executable File
79 lines
1.7 KiB
Bash
Executable File
# This file is part of MinIO Console Server
|
|
# Copyright (c) 2022 MinIO, Inc.
|
|
# # This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
# # This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
# # You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
SCRIPT_DIR=$(dirname "$0")
|
|
export SCRIPT_DIR
|
|
source "${SCRIPT_DIR}/common.sh"
|
|
|
|
__init__() {
|
|
export TIMESTAMP=$(date "+%s")
|
|
echo $TIMESTAMP >web-app/tests/constants/timestamp.txt
|
|
export GOPATH=/tmp/gopath
|
|
export PATH=${PATH}:${GOPATH}/bin
|
|
|
|
ARCH="$(uname -m)"
|
|
case $ARCH in
|
|
'i386')
|
|
ARCH='amd64'
|
|
alias ls='ls --color=auto'
|
|
;;
|
|
'x86_64')
|
|
ARCH='amd64'
|
|
alias ls='ls -G'
|
|
;;
|
|
'arm')
|
|
ARCH='arm64'
|
|
;;
|
|
*) ;;
|
|
esac
|
|
|
|
echo $ARCH
|
|
|
|
OS="$(uname)"
|
|
case $OS in
|
|
'Linux')
|
|
OS='linux'
|
|
alias ls='ls --color=auto'
|
|
;;
|
|
'FreeBSD')
|
|
OS='freebsd'
|
|
alias ls='ls -G'
|
|
;;
|
|
'WindowsNT')
|
|
OS='windows'
|
|
;;
|
|
'Darwin')
|
|
OS='darwin'
|
|
;;
|
|
'SunOS')
|
|
OS='solaris'
|
|
;;
|
|
'AIX') ;;
|
|
*) ;;
|
|
esac
|
|
|
|
curl -sLO "https://dl.min.io/client/mc/release/$OS-$ARCH/mc" -o mc
|
|
chmod +x mc
|
|
mv mc /usr/local/bin
|
|
|
|
add_alias
|
|
}
|
|
|
|
main() {
|
|
create_policies
|
|
create_users
|
|
assign_policies
|
|
}
|
|
|
|
(__init__ "$@" && main "$@")
|