10 lines
246 B
Bash
10 lines
246 B
Bash
#!/bin/bash
|
|
|
|
###############################################################
|
|
###
|
|
### timezone konfig
|
|
###
|
|
###############################################################
|
|
rm -rf /etc/localtime
|
|
ln -s /usr/share/zoneinfo/Europe/Berlin /etc/localtime
|