issue #716 sobre ansible, ahora tambien establece el keymap de la maquina en ES

parent 8f1ecc7d
......@@ -5,8 +5,6 @@ Vagrant.configure(2) do |config|
# "ubuntu/trusty64" for ubuntu environment
# "boxcutter/centos72" for AWS similar environment
config.vm.box = "aspyatkin/ubuntu-16.04-server-amd64"
# Set locale UTF-8
ENV['LC_ALL']="en_US.UTF-8"
config.vm.network "forwarded_port", guest: 1337, host: 1337
config.vm.network "forwarded_port", guest: 80, host: 8080
config.ssh.insert_key = false
......
#!/bin/bash
# running pictogram server
echo "-- Running pictogram server"
if [ -e "src/app.js" ]; then
cd src && forever start app.js --debug
......
#!/bin/bash
# keymap and system encoding
sudo localectl set-keymap es
export LANG=en_US.UTF-8
# installing ansible
echo "-- Installing ansible"
if [ -e "/usr/bin/apt-get" ]; then
echo "-- Installing using apt-get"
......@@ -16,6 +21,7 @@ else
exit
fi
# running ansible
echo "-- Running ansible playbook"
function runAnsiblePlaybook {
echo "-- Running playbook from $(pwd)"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment