mirror of https://github.com/tteck/Proxmox
parent
f2fe361224
commit
091bc0ad2a
2 changed files with 135 additions and 0 deletions
@ -0,0 +1,86 @@ |
|||||||
|
#!/usr/bin/env bash |
||||||
|
source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func) |
||||||
|
# Copyright (c) 2021-2024 tteck |
||||||
|
# Author: tteck (tteckster) |
||||||
|
# Co-Author: T.H. (ELKozel) |
||||||
|
# License: MIT |
||||||
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE |
||||||
|
|
||||||
|
function header_info { |
||||||
|
clear |
||||||
|
cat <<"EOF" |
||||||
|
_____ _ _ _ _ |
||||||
|
| ____| | __ _ ___| |_(_) ___ ___ ___ __ _ _ __ ___| |__ |
||||||
|
| _| | |/ _` / __| __| |/ __/ __|/ _ \/ _` | '__/ __| '_ \ |
||||||
|
| |___| | (_| \__ \ |_| | (__\__ \ __/ (_| | | | (__| | | | |
||||||
|
|_____|_|\__,_|___/\__|_|\___|___/\___|\__,_|_| \___|_| |_| |
||||||
|
|
||||||
|
EOF |
||||||
|
} |
||||||
|
header_info |
||||||
|
echo -e "Loading..." |
||||||
|
APP="Elasticsearch" |
||||||
|
var_disk="16" |
||||||
|
var_cpu="4" |
||||||
|
var_ram="4096" |
||||||
|
var_os="debian" |
||||||
|
var_version="12" |
||||||
|
variables |
||||||
|
color |
||||||
|
catch_errors |
||||||
|
|
||||||
|
function default_settings() { |
||||||
|
CT_TYPE="1" |
||||||
|
PW="" |
||||||
|
CT_ID=$NEXTID |
||||||
|
HN=$NSAPP |
||||||
|
DISK_SIZE="$var_disk" |
||||||
|
CORE_COUNT="$var_cpu" |
||||||
|
RAM_SIZE="$var_ram" |
||||||
|
BRG="vmbr0" |
||||||
|
NET="dhcp" |
||||||
|
GATE="" |
||||||
|
APT_CACHER="" |
||||||
|
APT_CACHER_IP="" |
||||||
|
DISABLEIP6="no" |
||||||
|
MTU="" |
||||||
|
SD="" |
||||||
|
NS="" |
||||||
|
MAC="" |
||||||
|
VLAN="" |
||||||
|
SSH="no" |
||||||
|
VERB="no" |
||||||
|
echo_default |
||||||
|
} |
||||||
|
|
||||||
|
function update_script() { |
||||||
|
header_info |
||||||
|
if [[ ! -f /etc/systemd/system/elasticsearch.service ]]; then msg_error "No ${APP} Installation Found!"; exit; fi |
||||||
|
if (( $(df /boot | awk 'NR==2{gsub("%","",$5); print $5}') > 80 )); then |
||||||
|
read -r -p "Warning: Storage is dangerously low, continue anyway? <y/N> " prompt |
||||||
|
[[ ${prompt,,} =~ ^(y|yes)$ ]] || exit |
||||||
|
fi |
||||||
|
|
||||||
|
msg_info "Stopping ${APP}" |
||||||
|
$STD /bin/systemctl stop elasticsearch.service |
||||||
|
msg_ok "Stopped ${APP}" |
||||||
|
|
||||||
|
msg_info "Updating ${APP}" |
||||||
|
$STD apt-get install elasticsearch &>/dev/null |
||||||
|
msg_ok "Updated ${APP}" |
||||||
|
|
||||||
|
msg_info "Starting ${APP}" |
||||||
|
$STD /bin/systemctl restart elasticsearch.service |
||||||
|
msg_ok "Started ${APP}" |
||||||
|
|
||||||
|
msg_ok "Updated Successfully" |
||||||
|
exit |
||||||
|
} |
||||||
|
|
||||||
|
start |
||||||
|
build_container |
||||||
|
description |
||||||
|
|
||||||
|
msg_ok "Completed Successfully!\n" |
||||||
|
echo -e "${APP} should be reachable on port 9200 |
||||||
|
${BL}http://${IP}:5678${CL} \n" |
@ -0,0 +1,49 @@ |
|||||||
|
#!/usr/bin/env bash |
||||||
|
|
||||||
|
# Copyright (c) 2021-2024 tteck |
||||||
|
# Author: tteck (tteckster) |
||||||
|
# Co-Author: T.H. (ELKozel) |
||||||
|
# License: MIT |
||||||
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE |
||||||
|
|
||||||
|
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" |
||||||
|
color |
||||||
|
verb_ip6 |
||||||
|
catch_errors |
||||||
|
setting_up_container |
||||||
|
network_check |
||||||
|
update_os |
||||||
|
|
||||||
|
msg_info "Installing Dependencies" |
||||||
|
$STD apt-get install -y wget |
||||||
|
$STD apt-get install -y sudo |
||||||
|
$STD apt-get install -y mc |
||||||
|
$STD apt-get install -y ca-certificates |
||||||
|
$STD apt-get install apt-transport-https |
||||||
|
$STD apt-get install -y gnupg |
||||||
|
msg_ok "Installed Dependencies" |
||||||
|
|
||||||
|
msg_info "Setting up Elastic Repository" |
||||||
|
mkdir -p /etc/apt/keyrings |
||||||
|
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | gpg --dearmor -o /usr/share/keyrings/elasticsearch-keyring.gpg |
||||||
|
echo "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.co/packages/8.x/apt stable main" >/etc/apt/sources.list.d/elastic-8.x.list |
||||||
|
msg_ok "Set up Elastic Repository" |
||||||
|
|
||||||
|
msg_info "Installing Elastcisearch" |
||||||
|
$STD apt-get update |
||||||
|
$STD apt-get install elasticsearch |
||||||
|
msg_ok "Installed Elastcisearch" |
||||||
|
|
||||||
|
msg_info "Creating Service" |
||||||
|
$STD /bin/systemctl daemon-reload |
||||||
|
$STD /bin/systemctl enable elasticsearch.service |
||||||
|
$STD /bin/systemctl start elasticsearch.service |
||||||
|
msg_ok "Created Service" |
||||||
|
|
||||||
|
motd_ssh |
||||||
|
customize |
||||||
|
|
||||||
|
msg_info "Cleaning up" |
||||||
|
$STD apt-get -y autoremove |
||||||
|
$STD apt-get -y autoclean |
||||||
|
msg_ok "Cleaned" |
Loading…
Reference in new issue