mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-01-11 03:15:09 +00:00
f275cdd62c
* add Ghost installation and update scripts * remove unnecessary installation check * Fixed link for testing * Set up testing. * Refactor Ghost installation script to streamline MySQL configuration and consolidate Node.js and npm installation steps * Update MySQL configuration in installation script to use password for flushing privileges * Bug fix * Remove separate npm installation step * Add ghost-user creation and modify Ghost installation to run as new user * Create ghost-user with proper permissions and update Ghost setup commands * Update Ghost installation script to include URL and modify service execution * Update Ghost installation to Ubuntu 24.04 and modify service execution * Downgrade Ubuntu installation version from 24.04 to 22.04 * Add npm installation check to Ghost installation script * Update Ghost installation script to install npm alongside Node.js * Add update to package list * Use ghost-cli's systemd set up * Add NOPASSWD for ghost-user during install and enable Ghost on all interfaces * Update ghost-user sudoers configuration to temporarely allow all commands without password * Fix syntax error * Update ghost version retrieval and configure MySQL with random password * Update ghost.json and clean ghost-install.sh * Update ghost installation script to use dynamic database password * Fix MySQL flush privileges command to use dynamic database password * Fix variable name for database password in ghost installation script * Add update success message only if ghost was actually updated * Remove unnecessary shellcheck directive from ghost.sh * Change back to community-scripts URLs * Update ct/ghost.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/ghost-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update ct/ghost.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/ghost-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/ghost-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update install/ghost-install.sh Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Update json/ghost.json Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> * Add link to detailed license + Change to Debian 12 * Update license comment format in ghost-install.sh * remove unneeded spaces * change date --------- Co-authored-by: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Co-authored-by: CanbiZ <47820557+MickLesk@users.noreply.github.com>
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"name": "Ghost",
|
|
"slug": "ghost",
|
|
"categories": [
|
|
12
|
|
],
|
|
"date_created": "2025-01-10",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": 2368,
|
|
"documentation": "https://ghost.org/docs/",
|
|
"website": "https://ghost.org",
|
|
"logo": "https://raw.githubusercontent.com/TryGhost/Ghost/b6fe724b577e84f7dd174646d0323dabdcdf576e/apps/shade/src/assets/images/ghost-orb.svg",
|
|
"description": "Ghost is a powerful app for professional publishers to create, share, and grow a business around their content. It comes with modern tools to build a website, publish content, send newsletters & offer paid subscriptions to members.",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/ghost.sh",
|
|
"resources": {
|
|
"cpu": 2,
|
|
"ram": 1024,
|
|
"hdd": 5,
|
|
"os": "Debian",
|
|
"version": "12"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": null,
|
|
"password": null
|
|
},
|
|
"notes": [
|
|
{
|
|
"text": "To run Ghost-CLI commands, first set a password for the ghost-user by running `sudo passwd ghost-user`. Then, switch to the ghost-user with `sudo -su ghost-user`.",
|
|
"type": "info"
|
|
}
|
|
]
|
|
}
|
|
|
|
|