mirror of
https://github.com/joglomedia/LEMPer.git
synced 2026-04-13 16:31:46 +00:00
9 lines
163 B
Bash
Executable File
9 lines
163 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Install Postfix mail server
|
|
apt-get install -y mailutils postfix
|
|
|
|
# Update local time
|
|
apt-get install -y ntpdate
|
|
ntpdate -d cn.pool.ntp.org
|