mirror of
https://github.com/nextcloud/vm.git
synced 2025-10-26 11:27:32 +00:00
43 lines
735 B
Bash
43 lines
735 B
Bash
#!/bin/bash
|
|
|
|
# Tech and Me © - 2018, https://www.techandme.se/
|
|
|
|
# shellcheck disable=2034,2059
|
|
true
|
|
# shellcheck source=lib.sh
|
|
. <(curl -sL https://raw.githubusercontent.com/nextcloud/vm/master/lib.sh)
|
|
|
|
# Check for errors + debug code and abort if something isn't right
|
|
# 1 = ON
|
|
# 0 = OFF
|
|
DEBUG=0
|
|
debug_mode
|
|
|
|
[ -f /root/.profile ] && rm -f /root/.profile
|
|
|
|
cat <<ROOT-PROFILE > "$ROOT_PROFILE"
|
|
|
|
# ~/.profile: executed by Bourne-compatible login shells.
|
|
|
|
if [ "$BASH" ]
|
|
then
|
|
if [ -f ~/.bashrc ]
|
|
then
|
|
. ~/.bashrc
|
|
fi
|
|
fi
|
|
|
|
if [ -x /var/scripts/nextcloud-startup-script.sh ]
|
|
then
|
|
/var/scripts/nextcloud-startup-script.sh
|
|
fi
|
|
|
|
if [ -x /var/scripts/history.sh ]
|
|
then
|
|
/var/scripts/history.sh
|
|
fi
|
|
|
|
mesg n
|
|
|
|
ROOT-PROFILE
|