diff options
author | Juan RP <xtraeme@gmail.com> | 2015-04-02 18:05:18 +0200 |
---|---|---|
committer | Juan RP <xtraeme@gmail.com> | 2015-04-02 18:05:18 +0200 |
commit | 41372a524a97915a52f85caab68a003f4ae0dea8 (patch) | |
tree | 7d16aab41b1bb5d138fcf54c837a58e7c78db5fa /services | |
parent | aeeb2b4b8459d853be85aa894c5be1aa140510ad (diff) | |
download | runit-void-41372a524a97915a52f85caab68a003f4ae0dea8.tar.gz runit-void-41372a524a97915a52f85caab68a003f4ae0dea8.tar.xz runit-void-41372a524a97915a52f85caab68a003f4ae0dea8.zip |
agetty-generic/run: fix reading conf on cwd.
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 b47475a..1e6c2bd 100755 --- a/services/agetty-generic/run +++ b/services/agetty-generic/run @@ -2,7 +2,7 @@ tty=${PWD##*-} -[ -r conf ] && . conf +[ -r conf ] && . ./conf if [ -x /sbin/getty ]; then # busybox |