Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications.
Webuzo is a Single User Control Panel which helps users deploy Web Apps (WordPress, Joomla, Drupal, etc) or System Apps (Apache, NGINX, PHP, Java, MongoDB, etc) on their virtual machines or in the cloud.
Path to Installation Logs : /root/webuzo-install.log
Instructions
On completion of the installation process, access http://your-ip:2004 to configure Softaculous Webuzo initially.
Contact : http://webuzo.com/contact
#!/bin/bash ########################################################################################################### # Install Apache Ant and Softaculous Webuzo # Description - # About Webuzo : # Webuzo is a Single User Control Panel which helps users deploy Web Apps (WordPress, Joomla, Drupal, etc) # or System Apps (Apache, NGINX, PHP, Java, MongoDB, etc) on their virtual machines or in the cloud. # # About Apache Ant : # Apache Ant is a Java library and command-line tool whose mission is to drive processes described # in build files as targets and extension points dependent upon each other. # The main known usage of Ant is the build of Java applications. ########################################################################################################### # Install Apache Ant application using Webuzo function install_webuzo(){ # Fetch the Webuzo Installer wget -N http://files.webuzo.com/install.sh >> /root/webuzo-install.log 2>&1 # Modify Permissions chmod 0755 install.sh >> /root/webuzo-install.log 2>&1 # Execute ./install.sh --install=ant >> /root/webuzo-install.log 2>&1 # Clean Up rm -rf install.sh >> /root/webuzo-install.log 2>&1 } ######################################################### # Installing Apache Ant using Softaculous Webuzo ######################################################### install_webuzo echo " " echo "-------------------------------------" echo " Installation Completed " echo "-------------------------------------" echo "Congratulations, Apache Ant has been successfully installed" echo " " echo "You can now configure Apache Ant and Softaculous Webuzo at the following URL :" echo "http://$ip:2004/" echo " " echo "Thank you for choosing Softaculous Webuzo !" echo " "