मैं गैर-संवादात्मक मोड (स्क्रिप्ट में) के माध्यम से आपूर्ति किए गए सभी मूल्यों के साथ dpkg-reconfigure के माध्यम से ubuntu पैकेज को कॉन्फ़िगर करना चाहूंगा।
वास्तव में मेरा मामला फायरबर्ड कन्फिगेशन ( http://www.firebirdsql.org/manual/ubusetup.html ) है, कि कमांड का उपयोग करते समय:
sudo dpkg-reconfigure firebird2.5-superclassic -freadline
मुझसे 2 मूल्यों के लिए पूछता है, जहां उत्तर 'Y' और 'newpwd' होंगे।
नमूना उत्पादन इस तरह दिखता है:
sudo dpkg-reconfigure firebird2.5-superclassic -freadline
* Firebird 2.5 superclassic server not running
Configuring firebird2.5-superclassic
------------------------------------
Accept if you want Firebird server to start automatically.
If you only need the Firebird client and there are no databases that will be served by this host, decline.
Enable Firebird server? Y
Password for firebird 2.5
-------------------------
Firebird has a special user named SYSDBA, which is the user that has access to all databases. SYSDBA can also create new databases and users. Because of this, it
is necessary to secure SYSDBA with a password.
The password is stored in /etc/firebird/2.5/SYSDBA.password (readable only by root). You may modify it there (don't forget to update the security database too,
using the gsec utility), or you may use dpkg-reconfigure to update both.
To keep your existing password, leave this blank.
Password for SYSDBA:
* Starting Firebird 2.5 superclassic server...
...done.
* Firebird 2.5 superclassic server already running
मैंने here strings
इस तरह से bash स्क्रिप्ट के माध्यम से कोशिश की है :
sudo dpkg-reconfigure firebird2.5-superclassic -f readline << EOF
Y
newpwd
EOF
हालाँकि यह किसी कारण से काम नहीं आया और इसने आपूर्ति किए जाने वाले मूल्यों के लिए कहा।
कोई विचार कैसे आवश्यक मूल्यों को स्क्रिप्ट में खिलाया जाए?