-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed controls in case appropriate configs are missing #6
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Нужно исправить логику проверки на предмет правильного кода ошибки (если нет файла, то unknown для запроса текущего состояния и код ошибки 0, а для запроса на изменение - код ошибки 2).
controls/autofs-browse-mode
Outdated
@@ -22,5 +22,10 @@ new_subst disabled \ | |||
|
|||
new_summary 'Browse autofs target mountpoints' | |||
|
|||
case "$*" in | |||
status|'') | |||
test -f "$CONFIG" || echo "unknown" && exit 2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это нерабочая конструкция, см.:
$ true || echo u && echo e
e
$ false || echo u && echo e
u
e
controls/autofs-browse-mode
Outdated
@@ -22,5 +22,10 @@ new_subst disabled \ | |||
|
|||
new_summary 'Browse autofs target mountpoints' | |||
|
|||
case "$*" in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Непонятно - зачем, вообще, нужен этот case
?
Если конфигурационный файл отсутствует, то в любом случае на запрос о статусе должен выдаваться unknown без ошибок (код ошибки 0):
Сейчас так:
- когда конфигурационный файл имеется, выход такой:
$ grep ^browse /etc/autofs.conf
browse_mode = no
$ sudo control autofs-browse-mode
disabled
$ echo $?
0
$ grep ^browse /etc/autofs.conf
browse_mode = aaa
$ sudo control autofs-browse-mode
unknown
$ echo $?
0
$ sudo control autofs-browse-mode disabled
$ sudo control autofs-browse-mode
disabled
- когда конфигурационный файл отсутствует:
$ sudo mv /etc/autofs.conf /etc/autofs.conf.saved
$ sudo control autofs-browse-mode
grep: /etc/autofs.conf: Нет такого файла или каталога
grep: /etc/autofs.conf: Нет такого файла или каталога
grep: /etc/autofs.conf: Нет такого файла или каталога
unknown
$ echo $?
0
$ sudo control autofs-browse-mode disabled
grep: /etc/autofs.conf: Нет такого файла или каталога
grep: /etc/autofs.conf: Нет такого файла или каталога
grep: /etc/autofs.conf: Нет такого файла или каталога
sed: невозможно выполнить stat для /etc/autofs.conf: Нет такого файла или каталога
$ echo $?
1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Переделал и запушил с форсом
7bdd5a0
to
4859646
Compare
No description provided.