mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-02-09 17:29:16 +00:00
Compare commits
2 Commits
a9bc67fd32
...
ecdbcc9355
Author | SHA1 | Date | |
---|---|---|---|
|
ecdbcc9355 | ||
|
878ded276b |
@ -31,7 +31,6 @@ msg_info "Configuring MySQL"
|
|||||||
DB_PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)
|
DB_PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)
|
||||||
$STD mysql -u root -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH 'mysql_native_password' BY '$DB_PASS';"
|
$STD mysql -u root -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH 'mysql_native_password' BY '$DB_PASS';"
|
||||||
$STD mysql -u root -p"$DB_PASS" -e "FLUSH PRIVILEGES;"
|
$STD mysql -u root -p"$DB_PASS" -e "FLUSH PRIVILEGES;"
|
||||||
|
|
||||||
{
|
{
|
||||||
echo "MySQL-Credentials"
|
echo "MySQL-Credentials"
|
||||||
echo "Username: root"
|
echo "Username: root"
|
||||||
@ -39,25 +38,21 @@ $STD mysql -u root -p"$DB_PASS" -e "FLUSH PRIVILEGES;"
|
|||||||
} >> ~/mysql.creds
|
} >> ~/mysql.creds
|
||||||
msg_ok "Configured MySQL"
|
msg_ok "Configured MySQL"
|
||||||
|
|
||||||
|
|
||||||
msg_info "Setting up Node.js Repository"
|
msg_info "Setting up Node.js Repository"
|
||||||
mkdir -p /etc/apt/keyrings
|
mkdir -p /etc/apt/keyrings
|
||||||
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
||||||
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" >/etc/apt/sources.list.d/nodesource.list
|
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" >/etc/apt/sources.list.d/nodesource.list
|
||||||
msg_ok "Set up Node.js Repository"
|
msg_ok "Set up Node.js Repository"
|
||||||
|
|
||||||
msg_info "Installing Node.js and npm"
|
msg_info "Setup Node.js"
|
||||||
$STD apt-get update
|
$STD apt-get update
|
||||||
$STD apt-get install -y nodejs
|
$STD apt-get install -y nodejs
|
||||||
msg_ok "Installed Node.js and npm"
|
msg_ok "Setup Node.js"
|
||||||
|
|
||||||
|
|
||||||
msg_info "Installing Ghost CLI"
|
msg_info "Installing Ghost CLI"
|
||||||
$STD npm install ghost-cli@latest -g
|
$STD npm install ghost-cli@latest -g
|
||||||
msg_ok "Installed Ghost CLI"
|
msg_ok "Installed Ghost CLI"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
msg_info "Creating Service"
|
msg_info "Creating Service"
|
||||||
$STD adduser --disabled-password --gecos "Ghost user" ghost-user
|
$STD adduser --disabled-password --gecos "Ghost user" ghost-user
|
||||||
$STD usermod -aG sudo ghost-user
|
$STD usermod -aG sudo ghost-user
|
||||||
@ -69,12 +64,10 @@ sudo -u ghost-user -H sh -c "cd /var/www/ghost && ghost install --db=mysql --dbh
|
|||||||
rm /etc/sudoers.d/ghost-user
|
rm /etc/sudoers.d/ghost-user
|
||||||
msg_ok "Creating Service"
|
msg_ok "Creating Service"
|
||||||
|
|
||||||
|
|
||||||
motd_ssh
|
motd_ssh
|
||||||
customize
|
customize
|
||||||
|
|
||||||
|
|
||||||
msg_info "Cleaning up"
|
msg_info "Cleaning up"
|
||||||
$STD apt-get -y autoremove
|
$STD apt-get -y autoremove
|
||||||
$STD apt-get -y autoclean
|
$STD apt-get -y autoclean
|
||||||
msg_ok "Cleaned"
|
msg_ok "Cleaned"
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"categories": [
|
"categories": [
|
||||||
12
|
12
|
||||||
],
|
],
|
||||||
"date_created": "2025-01-09",
|
"date_created": "2025-01-10",
|
||||||
"type": "ct",
|
"type": "ct",
|
||||||
"updateable": true,
|
"updateable": true,
|
||||||
"privileged": false,
|
"privileged": false,
|
||||||
|
Loading…
Reference in New Issue
Block a user