mirror of
https://github.com/kidwellj/proxmox-scripts.git
synced 2025-01-09 13:12:22 +00:00
Updated snowflake-install.sh
This commit is contained in:
parent
81129990df
commit
52f092ca34
|
@ -69,6 +69,24 @@ apt-get update &>/dev/null
|
||||||
apt-get -y upgrade &>/dev/null
|
apt-get -y upgrade &>/dev/null
|
||||||
msg_ok "Updated Container OS"
|
msg_ok "Updated Container OS"
|
||||||
|
|
||||||
|
PASS=$(grep -w "root" /etc/shadow | cut -b6);
|
||||||
|
if [[ $PASS != $ ]]; then
|
||||||
|
msg_info "Customizing Container"
|
||||||
|
rm /etc/motd
|
||||||
|
rm /etc/update-motd.d/10-uname
|
||||||
|
touch ~/.hushlogin
|
||||||
|
GETTY_OVERRIDE="/etc/systemd/system/container-getty@1.service.d/override.conf"
|
||||||
|
mkdir -p $(dirname $GETTY_OVERRIDE)
|
||||||
|
cat << EOF > $GETTY_OVERRIDE
|
||||||
|
[Service]
|
||||||
|
ExecStart=
|
||||||
|
ExecStart=-/sbin/agetty --autologin root --noclear --keep-baud tty%I 115200,38400,9600 \$TERM
|
||||||
|
EOF
|
||||||
|
systemctl daemon-reload
|
||||||
|
systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//')
|
||||||
|
|
||||||
|
msg_ok "Customized Container"
|
||||||
|
|
||||||
msg_info "Installing Dependencies"
|
msg_info "Installing Dependencies"
|
||||||
apt-get install -y wget git golang &>/dev/null
|
apt-get install -y wget git golang &>/dev/null
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
@ -106,22 +124,6 @@ systemctl daemon-reload
|
||||||
systemctl enable --now snowflake.service
|
systemctl enable --now snowflake.service
|
||||||
msg_ok "Enabled and started Service"
|
msg_ok "Enabled and started Service"
|
||||||
|
|
||||||
PASS=$(grep -w "root" /etc/shadow | cut -b6);
|
|
||||||
if [[ $PASS != $ ]]; then
|
|
||||||
msg_info "Customizing Container"
|
|
||||||
rm /etc/motd
|
|
||||||
rm /etc/update-motd.d/10-uname
|
|
||||||
touch ~/.hushlogin
|
|
||||||
GETTY_OVERRIDE="/etc/systemd/system/container-getty@1.service.d/override.conf"
|
|
||||||
mkdir -p $(dirname $GETTY_OVERRIDE)
|
|
||||||
cat << EOF > $GETTY_OVERRIDE
|
|
||||||
[Service]
|
|
||||||
ExecStart=
|
|
||||||
ExecStart=-/sbin/agetty --autologin root --noclear --keep-baud tty%I 115200,38400,9600 \$TERM
|
|
||||||
EOF
|
|
||||||
systemctl daemon-reload
|
|
||||||
systemctl restart $(basename $(dirname $GETTY_OVERRIDE) | sed 's/\.d//')
|
|
||||||
|
|
||||||
msg_ok "Customized Container"
|
msg_ok "Customized Container"
|
||||||
msg_info "Cleaning up"
|
msg_info "Cleaning up"
|
||||||
apt-get autoremove >/dev/null
|
apt-get autoremove >/dev/null
|
||||||
|
|
Loading…
Reference in a new issue