diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2018-12-07 13:41:06 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2018-12-08 12:06:26 -0600 |
commit | 5427783fdf3d183ea4e63afc507c31d88f0d2c9c (patch) | |
tree | 3da5a048164ea07caed56196f6afc35a6fe4dedc /etc | |
parent | d95425b08a1675efb66def056d0f92e6b2d78a77 (diff) |
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.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.in | 2 | ||||
-rw-r--r-- | etc/rc.shutdown.in | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 |