calpine-os-linux/src/post-install.sh

26 lines
432 B
Bash
Raw Permalink Normal View History

#!/bin/sh
#
# Copyright (c) 2021 Sambo Chea <sombochea@cubetiqs.com
# MIT
#
# Catch errors
set -ex
# Ensure certs are up to date
update-ca-certificates
# make saure we have the latest packages
/sbin/apk update
/sbin/apk upgrade
2021-03-26 10:31:24 +07:00
# Allow run sudo
/sbin/apk add sudo
# Add wheel group
2021-03-26 11:13:29 +07:00
echo '%wheel ALL=NOPASSWD: ALL' > /etc/sudoers.d/wheel
cat /etc/sudoers.d/wheel
2021-03-26 10:31:24 +07:00
# Add an administrator user.
2021-03-26 11:23:22 +07:00
adduser -D -u1000 cubetiq -G wheel