Hello,
I am trying to build a debian package for my web application. It will ask two question. But i want this question in single window. Currently it will prompt two separate window. Please help me how to do this on single window? ============================================= config #!/bin/sh -e # Source debconf library. . /usr/share/debconf/confmodule # server type? db_input critical myapp/domain-name || true db_input critical myapp/ip-address || true db_go ============================================= templates Template: myapp/domain-name Type: string Description: Domain Name: Template: myapp/ip-address Type: string Description: IP-Address: ============================================== Thanks

