diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-07-17 09:17:28 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-07-17 09:17:28 -0300 |
commit | f7768d883ed16cca8aebbf8a98c9cdd5a7269d1c (patch) | |
tree | 7cc9cdef41e5dcd63ee163ff8ecbd7e85915e37d | |
parent | ddbce5753dbabf405fdd3477064b20fba9edc38c (diff) | |
download | puppet-nodo-f7768d883ed16cca8aebbf8a98c9cdd5a7269d1c.tar.gz puppet-nodo-f7768d883ed16cca8aebbf8a98c9cdd5a7269d1c.tar.bz2 |
Double quotes around value at rc.local
-rw-r--r-- | files/etc/rc.local | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/etc/rc.local b/files/etc/rc.local index 55fdcd9..ee21a64 100644 --- a/files/etc/rc.local +++ b/files/etc/rc.local @@ -45,7 +45,7 @@ if [ -e "/sys/module/usbcore/parameters/authorized_default" ]; then echo "0" > /sys/module/usbcore/parameters/authorized_default for bus in /sys/bus/usb/devices/usb*; do - echo 0 > $bus/authorized_default + echo "0" > $bus/authorized_default done fi |