简体   繁体   中英

How can i check PEAR mail is installed on my server by shell script?

I want to install PEAR mail on AWS Elastic Beanstalk applicatoin. By .ebextension i can run this command

container_commands: 
  01-command: 
    command: pear install mail
  02-command: 
    command: pear install net_smtp

I am getting some eorr like 'pear mail is already installed '
How can i check pear mail is already installed by shell script. So i can check and install. Or any other way to install without any error ?

Thanks

You can instruct beanstalk to ignore errors if your command fails:

container_commands: 
  01-command: 
    command: pear install mail
    ignoreErrors: true

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM