My configuration files for Debian/Ubuntu applications
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

18 satır
211 B

  1. ensure_tpm_path_exists() {
  2. mkdir -p "$(tpm_path)"
  3. }
  4. fail_helper() {
  5. local message="$1"
  6. echo "$message" >&2
  7. FAIL="true"
  8. }
  9. exit_value_helper() {
  10. if [ "$FAIL" == "true" ]; then
  11. exit 1
  12. else
  13. exit 0
  14. fi
  15. }