diff options
author | Juan RP <xtraeme@gmail.com> | 2014-07-30 12:38:15 +0200 |
---|---|---|
committer | Juan RP <xtraeme@gmail.com> | 2014-07-30 12:38:15 +0200 |
commit | 893e10f09c4c0a4d9a3fd44957050b63a5865dca (patch) | |
tree | e1cd976bcd9dfc845c9e809585591da2fbd1c3a7 | |
parent | cbbd435170f3b8ec9f2b32611a4fe83b4254be35 (diff) | |
download | runit-void-893e10f09c4c0a4d9a3fd44957050b63a5865dca.tar.gz runit-void-893e10f09c4c0a4d9a3fd44957050b63a5865dca.tar.xz runit-void-893e10f09c4c0a4d9a3fd44957050b63a5865dca.zip |
fix bluetoothd: /bin/sh is dash not bash.
-rwxr-xr-x | services/bluetoothd/run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/bluetoothd/run b/services/bluetoothd/run index fa55162..81dee8b 100755 --- a/services/bluetoothd/run +++ b/services/bluetoothd/run @@ -1,2 +1,2 @@ #!/bin/sh -exec /usr/libexec/bluetooth/bluetoothd -n &>/dev/null +exec /usr/libexec/bluetooth/bluetoothd -n >/dev/null |