From e1a0e4e1de4fad3b3a0fe8f625f4e63c18f73385 Mon Sep 17 00:00:00 2001 From: Serge Schneider Date: Fri, 8 Jan 2016 10:33:06 +0000 Subject: [PATCH] Remove first boot auto-login files --- debian/raspi-config.docs | 1 - sample_profile_d.sh | 18 ------------------ 2 files changed, 19 deletions(-) delete mode 100644 debian/raspi-config.docs delete mode 100644 sample_profile_d.sh diff --git a/debian/raspi-config.docs b/debian/raspi-config.docs deleted file mode 100644 index 7fcf33a..0000000 --- a/debian/raspi-config.docs +++ /dev/null @@ -1 +0,0 @@ -sample_profile_d.sh diff --git a/sample_profile_d.sh b/sample_profile_d.sh deleted file mode 100644 index 17ad7bd..0000000 --- a/sample_profile_d.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh -# Part of raspi-config http://github.com/asb/raspi-config -# -# See LICENSE file for copyright and license details - -# Should be installed to /etc/profile.d/raspi-config.sh to force raspi-config -# to run at initial login - -# You may also want to set automatic login in /etc/inittab on tty1 by adding a -# line such as: -# 1:2345:respawn:/bin/login -f root tty1 /dev/tty1 2>&1 # RPICFG_TO_DISABLE - -if [ $(id -u) -ne 0 ]; then - printf "\nNOTICE: the software on this Raspberry Pi has not been fully configured. Please run 'sudo raspi-config'\n\n" -else - raspi-config - exec login -f pi -fi