|
Revision 461, 490 bytes
(checked in by free, 6 months ago)
|
|
* Run lash fix
* Disable exim and icecast at startup
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh -e |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | if [ "$1" != "new" ]; then |
|---|
| 5 | exit 0 |
|---|
| 6 | fi |
|---|
| 7 | |
|---|
| 8 | . /usr/share/debconf/confmodule |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | db_get passwd/username |
|---|
| 12 | USER=$RET |
|---|
| 13 | cdd-config sudoers $USER |
|---|
| 14 | cdd-config groups $USER |
|---|
| 15 | cdd-config bootsplash 791 |
|---|
| 16 | cdd-config services anacron bittorrent cron nfs-common rsync samba exim4 icecast2 icecast-server |
|---|
| 17 | cdd-config modules snd-seq |
|---|
| 18 | cdd-config apt 64studio |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | update-desktop-database |
|---|