CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
orangepi-xunlong

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: orangepi-xunlong/orangepi-build
Path: blob/next/external/packages/raspi/export-image/01-user-rename/01-run.sh
Views: 3960
1
#!/bin/bash -e
2
3
if [[ "${DISABLE_FIRST_BOOT_USER_RENAME}" == "0" ]]; then
4
on_chroot <<- EOF
5
SUDO_USER="${FIRST_USER_NAME}" rename-user -f -s
6
EOF
7
else
8
rm -f "${ROOTFS_DIR}/etc/xdg/autostart/piwiz.desktop"
9
fi
10
11