Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/llafuente/packager
aws production scripts and dev environment (my Linux* systems)
https://github.com/llafuente/packager
aws development-environment linux
Last synced: 1 day ago
JSON representation
aws production scripts and dev environment (my Linux* systems)
- Host: GitHub
- URL: https://github.com/llafuente/packager
- Owner: llafuente
- Created: 2015-06-09T22:45:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-18T15:17:40.000Z (over 6 years ago)
- Last Synced: 2024-11-07T06:43:09.589Z (about 2 months ago)
- Topics: aws, development-environment, linux
- Language: Shell
- Homepage:
- Size: 85.9 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# AWS Servers scripts
This is a collection of scripts that I use to setup, install and manage AWS
(or any remote server)This is not intended for public usage, use it for reference while you write
your own script collection.## to install packages on your machine
While I use aws/run\*.sh to start my machines, it's useful to to be able to install other already started machines, for that i use:
```bash
mkdir -p /tmp/installer
cd /tmp/installer
for SH_FILE in "disable-selinux.sh" "node.sh" "git.sh" "dotfiles.sh" "ntp.sh" "pip.sh";
do
echo "** Installing: ${SH_FILE}"
curl -o "${SH_FILE}" "https://raw.githubusercontent.com/llafuente/packager/master/packages/${SH_FILE}"sh ${SH_FILE}
done
```