-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from barriosnahuel/develop
Release v2.0.0
- Loading branch information
Showing
33 changed files
with
813 additions
and
312 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
/**/efu.log | ||
/**/summary.efu.log | ||
test.sh | ||
|
||
### JetBrains template | ||
/**/.idea/ | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
language: sh | ||
|
||
before_script: | ||
- sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ trusty-backports restricted main universe" | ||
- sudo apt-get update -qq | ||
- sudo apt-get install -qq shellcheck | ||
|
||
script: | ||
- shellcheck functions.sh | ||
- shellcheck createDirectoriesTree.sh | ||
- shellcheck common.sh | ||
- shellcheck install.sh | ||
- shellcheck modules/sdkman/sdkman.sh | ||
- shellcheck modules/android.sh | ||
- shellcheck modules/gimp.sh | ||
- shellcheck modules/git.sh | ||
- shellcheck modules/go.sh | ||
- shellcheck modules/google-app-engine.sh | ||
- shellcheck modules/google-drive.sh | ||
- shellcheck modules/heroku.sh | ||
- shellcheck modules/homebrew.sh | ||
- shellcheck modules/java.sh | ||
- shellcheck modules/maven.sh | ||
- shellcheck modules/mixxx.sh | ||
- shellcheck modules/nodejs.sh | ||
- shellcheck modules/oh-my-zsh.sh | ||
- shellcheck modules/ssh.sh | ||
- shellcheck modules/sublime-text.sh | ||
- shellcheck modules/tomcat.sh | ||
- shellcheck OS\ X/installAll-10.11.sh | ||
- shellcheck Ubuntu/core.sh | ||
- shellcheck Ubuntu/installAll-15.04.sh | ||
|
||
notifications: | ||
email: | ||
on_failure: change |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
# Created by Nahuel Barrios. | ||
# Just comment the undesired software to skip installing specific software. | ||
|
||
|
||
preInstallationLog "Transmission" | ||
brew install transmission | ||
postInstallationLog "Transmission" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/bin/bash | ||
# Created by Nahuel Barrios on 27/3/16. | ||
|
||
|
||
preInstallationLog "Gnome System Tools" | ||
sudo apt-get -fy install gnome-system-tools | ||
postInstallationLog "Gnome System Tools" | ||
logInfo "Available programs: network-admin, shares-admin, time-admin, users-admin" | ||
|
||
|
||
log "Installing packages to compress and extract different kind of files..." | ||
sudo apt-get -fy install unace unrar zip unzip p7zip-full p7zip-rar sharutils rar uudeview mpack arj cabextract | ||
|
||
|
||
preInstallationLog "GParted with NTFS support" | ||
sudo apt-get -fy install gparted ntfs-3g | ||
|
||
|
||
logInfo "Adding repositories for Rhythmbox and its plugins..." | ||
sudo add-apt-repository ppa:fossfreedom/rhythmbox -y | ||
sudo add-apt-repository ppa:fossfreedom/rhythmbox-plugins -y | ||
sudo apt-get update | ||
log "Instaling latest Rhythmbox and its plugins..." | ||
sudo apt-get -fy install rhythmbox rhythmbox-plugin-rhythmweb rhythmbox-plugin-equalizer rhythmbox-plugin-opencontainingfolder rhythmbox-plugin-llyrics | ||
|
||
|
||
preInstallationLog "Subdownloader, GMountISO, Freemind (a mind maps editor), Sound Converter, Steam client (will update on first run) and PlayOnLinux" | ||
sudo apt-get -fy install subdownloader gmountiso freemind soundconverter steam playonlinux | ||
|
||
|
||
if isUbuntu "$PLATFORM"; then | ||
. ./installAll-15.04.sh | ||
fi | ||
|
||
|
||
cd ~/Downloads/ | ||
|
||
|
||
log "Cleaning up..." && | ||
sudo apt-get -f install && | ||
sudo apt-get autoremove && | ||
sudo apt-get -y autoclean && | ||
sudo apt-get -y clean | ||
|
||
log "Updating installed packages..." | ||
sudo apt-get upgrade |
Oops, something went wrong.