-
-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
more automation for ss-install, almost automatic deployment #138
Comments
doesn't work. have to use seperate script to "sed -i" all variables that need to change edit: |
@jessuppi i created a script for this. i will publish it soon and make it accessible for everyone
no work to be done on this from your side :) |
@jessuppi I really like this initiative of automating SlickStack even more, however having a separate script that does this is a maintenance nightmare. What if, we use the defaults that are present in the script to perform the installation? The config summary is output after the installation, so any errors can be picked up then. If the script user is a bit more advanced, then he will know how to edit ss-config and rerun ss-install. I just feel like 90% of SS users just press enter at the prompts to accept the defaults, so let's help them by making this a "no input required" experience. |
Thanks for the feedback @kidharb To be honest I haven't even had time to go through the script released by @backamblock yet but I think he meant for it to be potentially merged into SlickStack like you suggested, or to be further extended by agencies as needed. |
Thanks Jesse, let me make myself useful and submit some PRs.
…On Sun, 30 Oct 2022, 20:36 Jesse Nickles, ***@***.***> wrote:
Thanks for the feedback @kidharb <https://github.com/kidharb>
To be honest I haven't even had time to go through the script released by
@backamblock <https://github.com/backamblock> yet but I think he meant
for it to be potentially merged into SlickStack like you suggested, or to
be further extended by agencies as needed.
—
Reply to this email directly, view it on GitHub
<#138 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABIM3RYLFYCRS5IYITLPCKTWF2533ANCNFSM5MNT3UKQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Just a quick question if you're here. will this work in the ss-config? i want to make one config file which i can deploy without having to manually create passwords every time. i have seen that you use this openssl command in the install script.
ROOT_PASSWORD="$(openssl rand -hex 32)"
SUDO_USER="$(openssl rand -hex 16)"
SUDO_PASSWORD="$(openssl rand -hex 32)"
SFTP_USER="$(openssl rand -hex 16)"
SFTP_PASSWORD="$(openssl rand -hex 32)"
DB_NAME="$(openssl rand -hex 16)"
DB_USER="$(openssl rand -hex 16)"
DB_PASSWORD="$(openssl rand -hex 32)"
DB_PASSWORD_ROOT="$(openssl rand -hex 32)"
DB_HOST="127.0.0.1"
DB_PREFIX="$(openssl rand -hex 5)"
DB_CHARSET="utf8mb4"
DB_COLLATE=""
The text was updated successfully, but these errors were encountered: