Sudo TouchID PAM modülünü tam anlamıyla conorgriffin'in açıkladığı şekilde kullanmasını sağlayan basit bir betik oluşturdum. Tek bir komut dosyasında bütünüyle bir terminale kopyalayıp yapıştırabilir veya " curl
pipe bash
" kısayolunu kullanabilirsiniz:
curl -sL https://gist.githubusercontent.com/RichardBronosky/31660eb4b0f0ba5e673b9bc3c9148a70/raw/touchid_sudo.sh | bash
Komut dizisinin tamamı :
#!/bin/bash
# curl -sL https://gist.githubusercontent.com/RichardBronosky/31660eb4b0f0ba5e673b9bc3c9148a70/raw/touchid_sudo.sh | bash
# This script is ready to copy-paste in whole, or just the line above (without the leading #)
# Use TouchID for sudo on modern MacBook Pro machines
# This script adds a single line to the top of the PAM configuration for sudo
# See: https://apple.stackexchange.com/q/259093/41827 for more info.
touchid_sudo(){
sudo bash -eu <<'EOF'
file=/etc/pam.d/sudo
# A backup file will be created with the pattern /etc/pam.d/.sudo.1
# (where 1 is the number of backups, so that rerunning this doesn't make you lose your original)
bak=$(dirname $file)/.$(basename $file).$(echo $(ls $(dirname $file)/{,.}$(basename $file)* | wc -l))
cp $file $bak
awk -v is_done='pam_tid' -v rule='auth sufficient pam_tid.so' '
{
# $1 is the first field
# !~ means "does not match pattern"
if($1 !~ /^#.*/){
line_number_not_counting_comments++
}
# $0 is the whole line
if(line_number_not_counting_comments==1 && $0 !~ is_done){
print rule
}
print
}' > $file < $bak
EOF
}
touchid_sudo
Bu senaryo, bash ya da DevOps için yeni olan insanlara öğretmeyi sevdiğim birkaç harika modeli gösteriyor.
.bak
Sonunda değil, numaralı bir yedekleme dosyası oluşturun . (Gnarly görünüyor, ama bu desen içinde olan $file
ve yeniden kullanılabilir olanlarla çalışır.
- Bunu güvenli hale getirmek için
curl ... | bash
, her şeyi bir fonksiyona sarın ve son satırda arayın. Bu şekilde indirme işlemi durdurulursa hiçbir şey (kısmen) yapılmaz.
sudo bash -eu
Komut dosyanızda bir çağrı yapın , böylece kullanıcıya yapmasını istemediğiniz için. ( -eu
Kısaltması olan errexit ve nounset ve bunları kullanarak olmalı!)
- Tek tırnaklı bash heredoc
'EOF'
erken kabuk genişlemesini önlemek için.
- Satır içi
awk
daha okunabilir yapma .