[OGo-Bugs][Bug 1844] Installer does not ask for a password

bugs@opengroupware.org bugs@opengroupware.org
Tue, 6 Mar 2007 22:53:47 +0100 (CET)


Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug
report.

http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1844


modir@huanga.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|CLOSED                      |REOPENED
         Resolution|NOTABUG                     |




------- Additional Comments From modir@huanga.com  2007-03-06 22:53 -------
If been reading now a little bit about RPM. And if I get it right they are
normal shell scripts. So you can write interactive scripts.

http://www.rpm.org/max-rpm-snapshot/s1-rpm-inside-scripts.html
http://fedora.redhat.com/docs/drafts/rpm-guide-en/

According to the first link something like this could be written:
#!/bin/bash
# "Reading" variables.

echo -n "Enter the value of variable 'var1': "
# The -n option to echo suppresses newline.

read var1
# Note no '$' in front of var1, since it is being set.

(I took this example from the advanced bash-scripting guide. We just need to
read in a username and a password like this)

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.