mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
285 B

  1. #!/bin/sh
  2. for x in sendmail mailq newaliases; do
  3. echo "$0: Re-creating /usr/bin/$x -> ${x}_@mailer@ ..."
  4. echo -e "#!/bin/sh\nexec -a $x ${x}_@mailer@ \"\$@\"" > /usr/bin/$x
  5. chmod +x /usr/bin/$x
  6. done
  7. # add compatibility symlink
  8. ln -sf /usr/bin/sendmail /usr/sbin/sendmail
  9. exit 0