Created
January 11, 2014 11:54
-
-
Save asimzeeshan/8370050 to your computer and use it in GitHub Desktop.
A simple bash script to install UPTIMED / UPRECORDS in CentOS Home: http://uptimed.technicalissues.us/
Project Downloads: https://github.com/genebean/uptimed/downloads
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ############################################################ | |
| # Author: Asim | |
| # Bash script created Jan 11, 2014 | |
| # | |
| # TODO | |
| # 1) Add interactivity | |
| # 2) Check from CDN for latest file updates | |
| # 3) Install dependancies | |
| # 4) Convert it into a REAL bash script | |
| ############################################################ | |
| wget https://github.com/downloads/genebean/uptimed/uptimed-0.3.17-0.2.tar.gz | |
| tar -vxf uptimed-0.3.17-0.2.tar.gz | |
| cd uptimed-0.3.17-0.2 | |
| ./configure | |
| gmake | |
| make install | |
| uptimed -b | |
| uprecords |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment