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.

9 lines
211 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. exit 0