diff options
author | Gerrit Pape <pape@smarden.org> | 2003-11-11 09:55:35 +0000 |
---|---|---|
committer | Gerrit Pape <pape@smarden.org> | 2003-11-11 09:55:35 +0000 |
commit | 831f4f9597060bad6a9e51a63e1b2aa370ae8a47 (patch) | |
tree | cfb27db1aae1fedf6533332a2e8e086e73d29da6 /etc | |
parent | fd90a7a97149752372577643566534dc123c4589 (diff) | |
download | runit-831f4f9597060bad6a9e51a63e1b2aa370ae8a47.tar.gz runit-831f4f9597060bad6a9e51a63e1b2aa370ae8a47.tar.xz runit-831f4f9597060bad6a9e51a63e1b2aa370ae8a47.zip |
* etc/debian/3: test -r -> test -x (thx Alejandro Mery).
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/debian/3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/debian/3 b/etc/debian/3 index 6777be3..e014e13 100755 --- a/etc/debian/3 +++ b/etc/debian/3 @@ -4,7 +4,7 @@ exec 2>&1 PATH=/command:/sbin:/bin:/usr/sbin:/usr/bin LAST=0 -test -r /etc/runit/reboot && LAST=6 +test -x /etc/runit/reboot && LAST=6 echo 'Waiting for getties to stop...' svwaitdown -xk -t14 /var/service/getty-* |