blob: 813ca1ef929ca8145142f4ae3d0c654b8330c38b (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env sh
post_install() {
# If config doesn't exist, copy the example over it.
cp /etc/rocketchat-server/example.env /etc/rocketchat-server/config.env
echo "Server will use port 22020."
}
|