ls-code-server/root/etc/cont-init.d/30-config

18 lines
412 B
Plaintext
Raw Normal View History

2019-06-24 20:03:06 +02:00
#!/usr/bin/with-contenv bash
2019-06-24 21:15:27 +02:00
mkdir -p /config/{extensions,data,workspace,.ssh}
2019-06-24 20:03:06 +02:00
2019-07-09 23:43:45 +02:00
if [ -n "${SUDO_PASSWORD}" ]; then
echo "setting up sudo access"
2019-07-10 00:55:11 +02:00
if ! grep -q 'abc' /etc/sudoers; then
echo "adding abc to sudoers"
echo "abc ALL=(ALL:ALL) ALL" >> /etc/sudoers
fi
echo "setting sudo password"
echo -e "${SUDO_PASSWORD}\n${SUDO_PASSWORD}" | passwd abc
fi
2019-06-24 20:03:06 +02:00
# permissions
chown -R abc:abc \
/config