From 5427783fdf3d183ea4e63afc507c31d88f0d2c9c Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Fri, 7 Dec 2018 13:41:06 -0600 Subject: standardize the default shell I do not know of a need to have the default shell be a build-time configurable setting. All *nix systems I am aware of have /bin/sh as a default posix compatible shell. If some systems running OpenRC do not make that assumption about /bin/sh, I will consider bringing this back, so feel free to open an issue. --- etc/rc.in | 2 +- etc/rc.shutdown.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'etc') diff --git a/etc/rc.in b/etc/rc.in index 72f8f05b..3d341512 100644 --- a/etc/rc.in +++ b/etc/rc.in @@ -1,4 +1,4 @@ -#!@SHELL@ +#!/bin/sh # Copyright (c) 2007-2015 The OpenRC Authors. # See the Authors file at the top-level directory of this distribution and # https://github.com/OpenRC/openrc/blob/master/AUTHORS diff --git a/etc/rc.shutdown.in b/etc/rc.shutdown.in index de3e09b9..e38ff3d9 100644 --- a/etc/rc.shutdown.in +++ b/etc/rc.shutdown.in @@ -1,4 +1,4 @@ -#!@SHELL@ +#!/bin/sh # Copyright (c) 2007-2015 The OpenRC Authors. # See the Authors file at the top-level directory of this distribution and # https://github.com/OpenRC/openrc/blob/master/AUTHORS -- cgit v1.2.3