13 lines
220 B
Bash
13 lines
220 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
pacman -Syu --noconfirm
|
||
|
|
|
||
|
|
# Force the locale
|
||
|
|
echo "LC_ALL=en_GB.UTF-8" >> /etc/default/locale
|
||
|
|
locale-gen en_US.UTF-8
|
||
|
|
|
||
|
|
# Set the hostname
|
||
|
|
echo "scarif.space" > /etc/hostname
|
||
|
|
|
||
|
|
chmod +x /opt/scarif/bootstrap.sh
|