mirror of
https://github.com/gurucomputing/headscale-ui.git
synced 2026-07-18 17:05:14 +00:00
24 lines
No EOL
639 B
Bash
24 lines
No EOL
639 B
Bash
#!/bin/sh
|
|
|
|
# script environment
|
|
# turn on bash logging, exit on error
|
|
set -ex
|
|
|
|
# create a non-root user
|
|
useradd -m -d /data/home dev-user
|
|
|
|
# set the default shell to the chosen shell
|
|
usermod --shell ${SHELL} dev-user
|
|
|
|
# Add the ability to set file permissions on /data to the non-privileged user
|
|
echo "ALL ALL=NOPASSWD: /bin/chown -R 1000\:1000 /data" >> /etc/sudoers
|
|
|
|
# install dependencies
|
|
/staging/scripts/install-base-dependencies.sh
|
|
/staging/scripts/install-container-dependencies.sh
|
|
/staging/scripts/install-openvscode-server.sh
|
|
|
|
# set tmux to use mouse scroll
|
|
echo "set -g mouse on" > /data/home/.tmux.conf
|
|
|
|
chown -R 1000:1000 /data |