docs: Adds tzdata to README (#1317)

This commit is contained in:
Kamron Batman 2022-12-30 15:32:54 -08:00 committed by GitHub
parent 33aa257344
commit 3f400fc965
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -64,10 +64,10 @@ jobs:
run: dnf upgrade --refresh -y && dnf install -y epel-release epel-next-release run: dnf upgrade --refresh -y && dnf install -y epel-release epel-next-release
if: ${{ startsWith(matrix.name, 'CentOS') }} if: ${{ startsWith(matrix.name, 'CentOS') }}
- name: Install Prerequisites using dnf - name: Install Prerequisites using dnf
run: dnf makecache --refresh && dnf install -y findutils libicu zlib-devel zstd libargon2-devel run: dnf makecache --refresh && dnf install -y findutils libicu zlib-devel zstd libargon2-devel tzdata
if: ${{ matrix.packageManager == 'dnf' }} if: ${{ matrix.packageManager == 'dnf' }}
- name: Install Prerequisites using apt - name: Install Prerequisites using apt
run: apt-get update -y && apt-get install -y curl libicu-dev libz-dev zstd libargon2-dev run: apt-get update -y && apt-get install -y curl libicu-dev libz-dev zstd libargon2-dev tzdata
if: ${{ matrix.packageManager == 'apt' }} if: ${{ matrix.packageManager == 'apt' }}
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:

View file

@ -72,13 +72,13 @@ dnf upgrade --refresh -y
dnf install -y epel-release epel-next-release dnf install -y epel-release epel-next-release
# Note: libargon2 is old. # Note: libargon2 is old.
# Download/symlink from here: https://github.com/modernuo/Argon2.Bindings/tree/main/runtimes # Download/symlink from here: https://github.com/modernuo/Argon2.Bindings/tree/main/runtimes
dnf install -y findutils libicu zlib-devel zstd libargon2-devel dnf install -y findutils libicu zlib-devel zstd libargon2-devel tzdata
``` ```
### Ubuntu, Debian, etc ### Ubuntu, Debian, etc
```shell ```shell
apt-get update -y apt-get update -y
apt-get install -y libicu-dev libz-dev zstd libargon2-dev apt-get install -y libicu-dev libz-dev zstd libargon2-dev tzdata
``` ```
## Running the Server ## Running the Server