blob: 3b90bd76e54ec15882a97c28f7df7671812bfea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
# SPDX-FileCopyrightText: © 2025 Dominick Grift <dominick.grift@defensec.nl>
# SPDX-License-Identifier: Unlicense
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen
locale-gen
cat > /etc/selinux/config <<'EOF'
SELINUX=enforcing
SELINUXTYPE=dssp5
EOF
make modular_install
|