Compare commits

..

No commits in common. "433e44ec622964ad445e49deba3b5382c510d45c" and "c5d9a8bd9f3f8efe03753c3e589309b919ab3a2d" have entirely different histories.

3 changed files with 105 additions and 84 deletions

View File

@ -1,30 +1,57 @@
#!/usr/bin/env bash #!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func) source <(curl -s https://raw.githubusercontent.com/kristocopani/ProxmoxVE/build/misc/build.func)
# Copyright (c) 2021-2024 community-scripts ORG # Copyright (c) 2021-2024 community-scripts ORG
# Author: kristocopani # Author: kristocopani
# License: MIT # License: MIT
# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://semaphoreui.com/
# App Default Values function header_info {
clear
cat <<"EOF"
_____ __
/ ___/___ ____ ___ ____ _____ / /_ ____ ________
\__ \/ _ \/ __ `__ \/ __ `/ __ \/ __ \/ __ \/ ___/ _ \
___/ / __/ / / / / / /_/ / /_/ / / / / /_/ / / / __/
/____/\___/_/ /_/ /_/\__,_/ .___/_/ /_/\____/_/ \___/
/_/
EOF
}
header_info
echo -e "Loading..."
APP="Semaphore" APP="Semaphore"
var_tags="dev_ops" var_disk="4"
var_cpu="2" var_cpu="2"
var_ram="2048" var_ram="2048"
var_disk="4"
var_os="debian" var_os="debian"
var_version="12" var_version="12"
var_unprivileged="1"
# App Output & Base Settings
header_info "$APP"
base_settings
# Core
variables variables
color color
catch_errors 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() { function update_script() {
header_info header_info
check_container_storage check_container_storage
@ -66,6 +93,5 @@ build_container
description description
msg_ok "Completed Successfully!\n" msg_ok "Completed Successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${APP} server should be reachable by connecting to the following server.
echo -e "${INFO}${YW} Access it using the following URL:${CL}" ${BL}http://${IP}:3000${CL} \n"
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}"

View File

@ -20,42 +20,39 @@ $STD apt-get install -y \
git \ git \
gpg \ gpg \
sudo sudo
UBUNTU_CODENAME=jammy
wget -qO- "https://keyserver.ubuntu.com/pks/lookup?fingerprint=on&op=get&search=0x6125E2A8C77F2818FB7BD15B93C4A3FD7BB9C367" | gpg --dearmour >/usr/share/keyrings/ansible-archive-keyring.gpg wget -qO- "https://keyserver.ubuntu.com/pks/lookup?fingerprint=on&op=get&search=0x6125E2A8C77F2818FB7BD15B93C4A3FD7BB9C367" | gpg --dearmour >/usr/share/keyrings/ansible-archive-keyring.gpg
cat <<EOF >/etc/apt/sources.list.d/ansible.list $STD echo "deb [signed-by=/usr/share/keyrings/ansible-archive-keyring.gpg] http://ppa.launchpad.net/ansible/ansible/ubuntu $UBUNTU_CODENAME main" | tee /etc/apt/sources.list.d/ansible.list
deb [signed-by=/usr/share/keyrings/ansible-archive-keyring.gpg] http://ppa.launchpad.net/ansible/ansible/ubuntu jammy main
EOF
$STD apt update $STD apt update
$STD apt install -y ansible $STD apt install -y \
ansible
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Setup Semaphore" msg_info "Installing Semaphore"
RELEASE=$(curl -s https://api.github.com/repos/semaphoreui/semaphore/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') RELEASE=$(curl -s https://api.github.com/repos/semaphoreui/semaphore/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
mkdir -p /opt/semaphore mkdir -p /opt/semaphore
cd /opt/semaphore cd /opt/semaphore
wget -q https://github.com/semaphoreui/semaphore/releases/download/v${RELEASE}/semaphore_${RELEASE}_linux_amd64.deb wget -q https://github.com/semaphoreui/semaphore/releases/download/v${RELEASE}/semaphore_${RELEASE}_linux_amd64.deb
$STD dpkg -i semaphore_${RELEASE}_linux_amd64.deb $STD dpkg -i semaphore_${RELEASE}_linux_amd64.deb
rm -rf semaphore_${RELEASE}_linux_amd64.deb
SEM_HASH=$(openssl rand -base64 32) json_cookie_hash=$(head -c32 /dev/urandom | base64)
SEM_ENCRYPTION=$(openssl rand -base64 32) json_cookie_encryption=$(head -c32 /dev/urandom | base64)
SEM_KEY=$(openssl rand -base64 32) json_access_key_encryption=$(head -c32 /dev/urandom | base64)
SEM_PW=$(openssl rand -base64 12)
cat <<EOF >/opt/semaphore/config.json cat <<EOF >/opt/semaphore/config.json
{ {
"bolt": { "bolt": {
"host": "/opt/semaphore/semaphore_db.bolt" "host": "/opt/semaphore/semaphore_db.bolt"
}, },
"tmp_path": "/opt/semaphore/tmp", "tmp_path": "/opt/semaphore/tmp",
"cookie_hash": "${SEM_HASH}", "cookie_hash": "${json_cookie_hash}",
"cookie_encryption": "${SEM_ENCRYPTION}", "cookie_encryption": "${json_cookie_encryption}",
"access_key_encryption": "${SEM_KEY}" "access_key_encryption": "${json_access_key_encryption}"
} }
EOF EOF
$STD semaphore user add --admin --login admin --email admin@example.com --name Administrator --password admin --config /opt/semaphore/config.json
$STD semaphore user add --admin --login admin --email admin@helper-scripts.com --name Administrator --password ${SEM_PW} --config /opt/semaphore/config.json
echo "${SEM_PW}" >~/semaphore.creds
echo "${RELEASE}" >"/opt/${APPLICATION}_version.txt" echo "${RELEASE}" >"/opt/${APPLICATION}_version.txt"
msg_ok "Setup Semaphore" msg_ok "Installed Semaphore"
msg_info "Creating Service" msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/semaphore.service cat <<EOF >/etc/systemd/system/semaphore.service

View File

@ -1,8 +1,10 @@
{ {
"name": "Semaphore", "name": "Semaphore",
"slug": "semaphore", "slug": "semaphore",
"categories": [], "categories": [
"date_created": "2024-12-26", 11
],
"date_created": "2024-11-29",
"type": "ct", "type": "ct",
"updateable": true, "updateable": true,
"privileged": false, "privileged": false,
@ -14,7 +16,7 @@
"install_methods": [ "install_methods": [
{ {
"type": "default", "type": "default",
"script": "ct/semaphore.sh", "script": "/ct/semaphore.sh",
"resources": { "resources": {
"cpu": 2, "cpu": 2,
"ram": 2048, "ram": 2048,
@ -26,16 +28,12 @@
], ],
"default_credentials": { "default_credentials": {
"username": "admin", "username": "admin",
"password": null "password": "admin"
}, },
"notes": [ "notes": [
{ {
"text": "This instance uses BoltDB", "text": "This instance uses BoltDB",
"type": "info" "type": "info"
},
{
"text": "Admin password: `cat ~/semaphore.creds`",
"type": "info"
} }
] ]
} }