選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

enable-mount.rules.polkit 193 B

12345
  1. polkit.addRule(function(action, subject) {
  2. if (action.id == "org.freedesktop.udisks2.filesystem-mount-system" && subject.isInGroup("storage")) {
  3. return polkit.Result.YES;
  4. }
  5. });