diff options
author | Duncaen <mail@duncano.de> | 2015-11-05 23:23:02 +0100 |
---|---|---|
committer | Duncaen <mail@duncano.de> | 2015-11-05 23:23:02 +0100 |
commit | e13418097de4e2d18e6ff9534039a197fff24b4d (patch) | |
tree | c77a632eaf45ecd805b64365fa1ec09884746a71 /services | |
parent | 5f719f131c3d75a99f1a09d4cd7ccccc1534a100 (diff) | |
download | runit-void-e13418097de4e2d18e6ff9534039a197fff24b4d.tar.gz runit-void-e13418097de4e2d18e6ff9534039a197fff24b4d.tar.xz runit-void-e13418097de4e2d18e6ff9534039a197fff24b4d.zip |
agetty-generic: fix strange space substitution
Diffstat (limited to 'services')
-rwxr-xr-x | services/agetty-generic/run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/agetty-generic/run b/services/agetty-generic/run index af36daa..41a8cf7 100755 --- a/services/agetty-generic/run +++ b/services/agetty-generic/run @@ -12,5 +12,5 @@ elif [ -x /sbin/agetty -o -x /bin/agetty ]; then GETTY=agetty fi -exec setsid ${GETTY}${GETTY_ARGS:+ $GETTY_ARGS} \ +exec setsid ${GETTY} ${GETTY_ARGS} \ "${tty}" "${BAUD_RATE}" "${TERM_NAME}" |