Ready to PR!

This commit is contained in:
christos 2024-12-26 14:39:17 +02:00
parent 888f229914
commit 3d037445a7
3 changed files with 52 additions and 48 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/quantumryuu/ProxmoxVE/build/misc/build.func) source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/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

View File

@ -20,9 +20,11 @@ $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
$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 cat <<EOF >/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"

View File

@ -1,9 +1,7 @@
{ {
"name": "Semaphore", "name": "Semaphore",
"slug": "semaphore", "slug": "semaphore",
"categories": [ "categories": [],
11
],
"date_created": "2024-12-26", "date_created": "2024-12-26",
"type": "ct", "type": "ct",
"updateable": true, "updateable": true,
@ -28,12 +26,16 @@
], ],
"default_credentials": { "default_credentials": {
"username": "admin", "username": "admin",
"password": "admin" "password": null
}, },
"notes": [ "notes": [
{ {
"text": "This instance uses BoltDB", "text": "This instance uses BoltDB",
"type": "info" "type": "info"
},
{
"text": "Admin password: `cat ~/semaphore.creds`",
"type": "info"
} }
] ]
} }