MaXi32 Verified User Joined Jul 25, 2016 Messages 659 Location The Earth Dec 12, 2020 #1 Is there a predefined config to install Directadmin without asking questions in the terminal ? Something like predefined config for options.conf or php_extensions.conf before running setup.sh ?
Is there a predefined config to install Directadmin without asking questions in the terminal ? Something like predefined config for options.conf or php_extensions.conf before running setup.sh ?
O Ohm J Verified User Joined Aug 16, 2019 Messages 1,768 Dec 12, 2020 #2 Only can install without "auto" to select, Code: bash <(curl -Ss https://www.directadmin.com/setup.sh) or if you wanna do this, in same os, same config, edit install.sh find something like this and remove, OR edit by your skills Code: rm -f ${CB_OPTIONS} and move your option to /usr/local/directadmin/custombuild/options.conf ================================================= and about Extension copy your old extension to Code: /usr/local/directadmin/custombuild/php_extensions.conf and run "setup.sh auto" this relate to https://help.directadmin.com/item.php?id=578 Last edited: Dec 12, 2020
Only can install without "auto" to select, Code: bash <(curl -Ss https://www.directadmin.com/setup.sh) or if you wanna do this, in same os, same config, edit install.sh find something like this and remove, OR edit by your skills Code: rm -f ${CB_OPTIONS} and move your option to /usr/local/directadmin/custombuild/options.conf ================================================= and about Extension copy your old extension to Code: /usr/local/directadmin/custombuild/php_extensions.conf and run "setup.sh auto" this relate to https://help.directadmin.com/item.php?id=578
MaXi32 Verified User Joined Jul 25, 2016 Messages 659 Location The Earth Dec 12, 2020 #3 Thank you my @jamgames2, my bad after few months today I try to reinstall DA and I saw this new documentation here https://docs.directadmin.com/getting-started/installation/overview#common-installation-guide . It said if I use the command without 'auto' it still can ask question. But I just tried it out actually there was no question shown in terminal.
Thank you my @jamgames2, my bad after few months today I try to reinstall DA and I saw this new documentation here https://docs.directadmin.com/getting-started/installation/overview#common-installation-guide . It said if I use the command without 'auto' it still can ask question. But I just tried it out actually there was no question shown in terminal.
O Ohm J Verified User Joined Aug 16, 2019 Messages 1,768 Dec 12, 2020 #4 Yes, install script update every time when have update from Directadmin, but some tutorial still it old you can edit install script that you want to do, but keep in mind to not change step install from default script
Yes, install script update every time when have update from Directadmin, but some tutorial still it old you can edit install script that you want to do, but keep in mind to not change step install from default script
smtalk Administrator Staff member Joined Aug 22, 2006 Messages 10,162 Location LT, EU Dec 12, 2020 #5 There is a quick workaround for this For example, you'd like to override default value for php1_release. You'd just do it this way: Code: export php1_release=8.0 Then run setup.sh in auto mode, and it should just 8.0 for php1_release.
There is a quick workaround for this For example, you'd like to override default value for php1_release. You'd just do it this way: Code: export php1_release=8.0 Then run setup.sh in auto mode, and it should just 8.0 for php1_release.