sudo: 行 27 付近 /etc/sudoers の解析エラー

sudo: 行 27 付近 /etc/sudoers の解析エラー
root@debian:/home/debian8# cat  /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults    env_reset
Defaults    mail_badpass
Defaults    secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root    ALL=(ALL:ALL) ALL

# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL

# See sudoers(5) for more information on "#include" directives:

includedir /etc/sudoers.d 

行27では、#文字が1つだけ削除され、元の形式は次のとおりです。

#includedir /etc/sudoers.d 

#文字だけを削除しました。

root@debian:/home/debian8# ls  /etc/sudoers.d
myRules  README
root@debian:/home/debian8# cat  /etc/sudoers.d/myRules
debian8  ALL=(ALL:ALL) NOPASSWD:ALL

どうすれば修正できますか?

ベストアンサー1

#includedir /etc/sudoers.dコメントではなく#includedir指示です。ハッシュ記号はその一部です。もう一度追加してください。

おすすめ記事