1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
wwwconfig-common (0.0.10) unstable; urgency=low
* *.*:
- Reapplied indentation.
- Replaced various echo with variables, so one can decide to print or to
log the information to file. next step will be the use of gettext.
* *.get:
- Added a check to avoid multiple inclusion of the same file.
Since (for example), postinst scripts use createuser and createdb it
is not usefull to include mysql.get or pgsql.get twice.
* apache-addtype_all.sh:
- Changed regular expressions
o /[[:space:]][[:space:]]*/[[:space:]]\+/
o / */[[:space:]]\+/
o / */[[:space:]]*/
- Changed from "cat $conffile | sed" to "sed ... < $conffile"
* apache-cominclude_all.sh:
- Changed regular expressions
o /[[:space:]][[:space:]]*/[[:space:]]\+/
* apache-cominclude.sh:
- Changed regular expressions
o /[[:space:]][[:space:]]*/[[:space:]]\+/
- Changed from "cat $conffile | sed" to "sed ... < $conffile"
* apache.func:
- Changed regular expressions
o /[[:space:]][[:space:]]*/[[:space:]]\+/
- Reduced the 3 assignment in the function to a single sed script.
* apache-include_all.sh:
- Changed regular expressions
o /[[:space:]][[:space:]]*/[[:space:]]\+/
* apache-include.sh:
- Changed regular expressions
o /[[:space:]][[:space:]]*/[[:space:]]\+/
* apache-index.sh:
- Changed regular expressions
o /[[:space:]][[:space:]]*/[[:space:]]\+/
* apache-php.sh:
- Changed regular expressions
o /[[:space:]][[:space:]]*/[[:space:]]\+/
o / */[[:space:]]\+/
o / */[[:space:]]*/
* apache-uncominclude.sh:
- Changed regular expressions
o /[[:space:]][[:space:]]*/[[:space:]]\+/
- Changed from "cat $conffile | sed" to "sed ... < $conffile"
* apache-uninclude_all.sh:
- Changed regular expressions
o /[[:space:]][[:space:]]*/[[:space:]]\+/
* apache-uninclude.sh:
- Changed regular expressions
o /[[:space:]][[:space:]]*/[[:space:]]\+/
- Changed from "cat $conffile | grep" to "grep ... < $conffile"
* autopatch_all.sh:
- Changed from "find ... -exec" to "find ... | while read etc."
* exim-trust.sh:
- Changed regular expressions
o / */[[:space:]]*/
* pgsql-allowip.sh:
- Changed the sed script on line 18. Need only one regular expression.
* pgsql-exec.sh:
- Added the -d flag to $pgsqlcmd (not really needed but clearer)
* pgsql-if-exec.sh:
- Added the -d flag to $pgsqlcmd (not really needed but clearer)
* pgsql-ifnot-exec.sh:
- Added the -d flag to $pgsqlcmd (not really needed but clearer)
* pgsql-nextsysid.get:
- Changed the piped commands with a single psql command using -A -q -t
* pgsql-userpass.get:
- Changed the piped commands with a single psql command using -A -q -t
* pgsql-createuser.sh:
- Changed the if statement on line 39 with a single psql command
using -A -q -t and changing th query
* Created {mysql,pgsql}-drop{user,db}.sh
* I may have missed to include other minor changes.
-- Luca - De Whiskey's - De vitis <luca@debian.org> Mon, 17 Sep 2001 22:32:22 +0200
Local variables:
mode: debian-changelog
End:
|