diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-01-26 01:10:21 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-01-26 01:12:23 -0500 |
commit | 3ad501218d268f9884d84079f3e2de4ac0793147 (patch) | |
tree | ea863193bb5c5522523faddf37a68a33bbec3c7b | |
parent | 43a155a313488a89a5d7d23f08b9692a3a836911 (diff) |
bootmisc: stop deleting /etc/nologin
Baselayout-1.x used to have a DELAYLOGIN option where it would setup
/etc/nologin automatically and then delete it later on. OpenRC did
not keep that feature, and during the rewrites, ended up just punting
it all the time. This isn't what we intended, so drop the rm.
X-Gentoo-Bug: 400837
X-Gentoo-Bug-URL: https://bugs.gentoo.org/400837
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | init.d/bootmisc.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in index c3824e02..d75cb6e7 100644 --- a/init.d/bootmisc.in +++ b/init.d/bootmisc.in @@ -181,7 +181,6 @@ start() fi fi - [ -w /etc/nologin ] && rm -f /etc/nologin return 0 } |