Skip to content

Instantly share code, notes, and snippets.

Compiling yaml in /usr/local/rvm/src/yaml-0.1.4.
ERROR: Error running 'make ', please read /usr/local/rvm/log/ruby-1.9.2-p290/yaml/make.log
Installing yaml to /usr/local/rvm/usr
ERROR: Error running 'make install', please read /usr/local/rvm/log/ruby-1.9.2-p290/yaml/make.install.log
[2011-11-04 04:26:04] make
make all-recursive
make[1]: Entering directory `/usr/local/rvm/src/yaml-0.1.4'
Making all in include
make[2]: Entering directory `/usr/local/rvm/src/yaml-0.1.4/include'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/usr/local/rvm/src/yaml-0.1.4/include'
Making all in src
make[2]: Entering directory `/usr/local/rvm/src/yaml-0.1.4/src'
if /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -g -O2 -MT api.lo -MD -MP -MF ".deps/api.Tpo" -c -o api.lo api.c; \
@goodwill
goodwill / autoreconf.log
Created November 3, 2011 21:02
rvm --trace pkg install libyaml
[2011-11-04 04:58:38] autoreconf -is
++ /scripts/functions/utility : __rvm_run() 159 > autoreconf -is
Putting files in AC_CONFIG_AUX_DIR, `config'.
libtoolize: `config.guess' exists: use `--force' to overwrite
libtoolize: `config.sub' exists: use `--force' to overwrite
libtoolize: `ltmain.sh' exists: use `--force' to overwrite
@goodwill
goodwill / digibyted.conf
Created September 7, 2015 09:46
Proper way to start digibyted in upstart
description "digibyted"
start on filesystem
stop on runlevel [!2345]
oom score -500
expect fork
respawn
respawn limit 10 60 # 10 times in 60 seconds
script
@goodwill
goodwill / node-app-manager.conf
Created April 7, 2016 10:11
Running multiple node app, the puma manager way
description "Manages the set of node-app-server processes"
# This starts upon bootup and stops on shutdown
start on runlevel [2345] and started mongod
stop on runlevel [06]
# Set this to the number of Puma processes you want
# to run on this machine
env NODE_LIST="/etc/node-app-manager.list"
FROM ruby:2.3.5
LABEL MAINTAINER [email protected]
ARG GOTANDA_LINE_DIR
# Install apt based dependencies required to run Rails as
# well as RubyGems. As the Ruby image itself is based on a
# Debian image, we use apt-get to install those.
RUN apt-get update && apt-get install -y \
build-essential \
libssl-dev \
@goodwill
goodwill / cloud-sql-proxy.service
Last active September 27, 2024 11:20
Example Systemd file for starting cloud sql proxy at system start
[Install]
WantedBy=multi-user.target
[Unit]
Description=Google Cloud Compute Engine SQL Proxy
Requires=networking.service
After=networking.service
[Service]
Type=simple