-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathchroot-bootstrap-nix.sh
executable file
·228 lines (196 loc) · 5.15 KB
/
chroot-bootstrap-nix.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#!/usr/bin/env bash
#
# This script runs inside chrooted environment. It installs grub and its
# Configuration file.
#
set -o errexit
set -o pipefail
set -o xtrace
export DEBIAN_FRONTEND=noninteractive
export APT_OPTIONS="-oAPT::Install-Recommends=false \
-oAPT::Install-Suggests=false \
-oAcquire::Languages=none"
if [ $(dpkg --print-architecture) = "amd64" ];
then
ARCH="amd64";
else
ARCH="arm64";
fi
function update_install_packages {
source /etc/os-release
# Update APT with new sources
cat /etc/apt/sources.list
apt-get $APT_OPTIONS update && apt-get $APT_OPTIONS --yes dist-upgrade
# Do not configure grub during package install
if [ "${ARCH}" = "amd64" ]; then
echo 'grub-pc grub-pc/install_devices_empty select true' | debconf-set-selections
echo 'grub-pc grub-pc/install_devices select' | debconf-set-selections
# Install various packages needed for a booting system
apt-get install -y \
linux-aws \
grub-pc \
e2fsprogs
else
apt-get install -y e2fsprogs
fi
# Install standard packages
apt-get install -y \
sudo \
wget \
cloud-init \
acpid \
ec2-hibinit-agent \
ec2-instance-connect \
hibagent \
ncurses-term \
ssh-import-id \
# apt upgrade
apt-get upgrade -y
# Install OpenSSH and other packages
sudo add-apt-repository --yes universe
apt-get update
apt-get install -y --no-install-recommends \
openssh-server \
git \
ufw \
cron \
logrotate \
fail2ban \
locales \
at \
less \
python3-systemd
if [ "${ARCH}" = "arm64" ]; then
apt-get $APT_OPTIONS --yes install linux-aws initramfs-tools dosfstools
fi
}
function setup_locale {
cat << EOF >> /etc/locale.gen
en_US.UTF-8 UTF-8
EOF
cat << EOF > /etc/default/locale
LANG="C.UTF-8"
LC_CTYPE="C.UTF-8"
EOF
locale-gen en_US.UTF-8
}
function setup_postgesql_env {
# Create the directory if it doesn't exist
sudo mkdir -p /etc/environment.d
# Define the contents of the PostgreSQL environment file
cat <<EOF | sudo tee /etc/environment.d/postgresql.env >/dev/null
LOCALE_ARCHIVE=/usr/lib/locale/locale-archive
LANG="en_US.UTF-8"
LANGUAGE="en_US.UTF-8"
LC_ALL="en_US.UTF-8"
LC_CTYPE="en_US.UTF-8"
EOF
}
function install_packages_for_build {
apt-get install -y --no-install-recommends linux-libc-dev \
acl \
magic-wormhole sysstat \
build-essential libreadline-dev zlib1g-dev flex bison libxml2-dev libxslt-dev libssl-dev libsystemd-dev libpq-dev libxml2-utils uuid-dev xsltproc ssl-cert \
gcc-10 g++-10 \
libgeos-dev libproj-dev libgdal-dev libjson-c-dev libboost-all-dev libcgal-dev libmpfr-dev libgmp-dev cmake \
libkrb5-dev \
maven default-jre default-jdk \
curl gpp apt-transport-https cmake libc++-dev libc++abi-dev libc++1 libglib2.0-dev libtinfo5 libc++abi1 ninja-build python \
liblzo2-dev
source /etc/os-release
apt-get install -y --no-install-recommends llvm-11-dev clang-11
# Mark llvm as manual to prevent auto removal
apt-mark manual libllvm11:arm64
}
function setup_apparmor {
apt-get install -y apparmor apparmor-utils auditd
# Copy apparmor profiles
cp -rv /tmp/apparmor_profiles/* /etc/apparmor.d/
}
function setup_grub_conf_arm64 {
cat << EOF > /etc/default/grub
GRUB_DEFAULT=0
GRUB_TIMEOUT=0
GRUB_TIMEOUT_STYLE="hidden"
GRUB_DISTRIBUTOR="Supabase postgresql"
GRUB_CMDLINE_LINUX_DEFAULT="nomodeset console=tty1 console=ttyS0 ipv6.disable=0"
EOF
}
# Install GRUB
function install_configure_grub {
if [ "${ARCH}" = "arm64" ]; then
apt-get $APT_OPTIONS --yes install cloud-guest-utils fdisk grub-efi-arm64 efibootmgr
setup_grub_conf_arm64
rm -rf /etc/grub.d/30_os-prober
sleep 1
fi
grub-install /dev/xvdf && update-grub
}
# skip fsck for first boot
function disable_fsck {
touch /fastboot
}
# Don't request hostname during boot but set hostname
function setup_hostname {
# Set the static hostname
echo "ubuntu" > /etc/hostname
chmod 644 /etc/hostname
# Update netplan configuration to not send hostname
cat << EOF > /etc/netplan/01-hostname.yaml
network:
version: 2
ethernets:
eth0:
dhcp4: true
dhcp4-overrides:
send-hostname: false
EOF
}
# Set options for the default interface
function setup_eth0_interface {
cat << EOF > /etc/netplan/eth0.yaml
network:
version: 2
ethernets:
eth0:
dhcp4: true
EOF
}
function disable_sshd_passwd_auth {
sed -i -E -e 's/^#?\s*PasswordAuthentication\s+(yes|no)\s*$/PasswordAuthentication no/g' \
-e 's/^#?\s*ChallengeResponseAuthentication\s+(yes|no)\s*$/ChallengeResponseAuthentication no/g' \
/etc/ssh/sshd_config
}
function create_admin_account {
groupadd admin
}
#Set default target as multi-user
function set_default_target {
rm -f /etc/systemd/system/default.target
ln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target
}
# Setup ccache
function setup_ccache {
apt-get install ccache -y
mkdir -p /tmp/ccache
export PATH=/usr/lib/ccache:$PATH
echo "PATH=$PATH" >> /etc/environment
}
# Clear apt caches
function cleanup_cache {
apt-get clean
}
update_install_packages
setup_locale
setup_postgesql_env
#install_packages_for_build
install_configure_grub
setup_apparmor
setup_hostname
create_admin_account
set_default_target
setup_eth0_interface
disable_sshd_passwd_auth
disable_fsck
#setup_ccache
cleanup_cache