diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2012-11-09 15:42:30 +0100 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2012-11-09 15:42:30 +0100 |
commit | 02a7ccfc2eda3b350b6e7aade0a9c1e05789504a (patch) | |
tree | 912f5c4f026e61f674abdef16785cc38762c4cb0 /config/chroot_local-hooks/06-bluetooth | |
parent | 3c071f6ff60e6fd5afde17d113beb50f1e246422 (diff) | |
download | kanotix-02a7ccfc2eda3b350b6e7aade0a9c1e05789504a.zip kanotix-02a7ccfc2eda3b350b6e7aade0a9c1e05789504a.tar.gz |
added checks to hooks
Diffstat (limited to 'config/chroot_local-hooks/06-bluetooth')
-rwxr-xr-x | config/chroot_local-hooks/06-bluetooth | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/chroot_local-hooks/06-bluetooth b/config/chroot_local-hooks/06-bluetooth index 98f422e..6f53821 100755 --- a/config/chroot_local-hooks/06-bluetooth +++ b/config/chroot_local-hooks/06-bluetooth @@ -1,3 +1,4 @@ #!/bin/sh -sed -i 's/^\(HIDD_ENABLED\)=.*/\1=1/' /etc/default/bluetooth +[ -e /etc/default/bluetooth ] && sed -i 's/^\(HIDD_ENABLED\)=.*/\1=1/' /etc/default/bluetooth #sed -i 's/\(^HIDD_OPTIONS\)=.*/\1="--master --server --search"/' /etc/default/bluetooth +exit 0 |