no risk no life

技術、投資、時事など

2017-10-01から1ヶ月間の記事一覧

Ansible 1.9以降のansible.cfgでhostfileを定義すると怒られる

概要 Ansible 2.4.0.0のansible.cfgで、 hostfile = ./hosts みたいに書いていると、以下のエラーが出力されplaybookを実行できない [DEPRECATION WARNING]: [defaults]hostfile option, The key is misleading as it can also be a list of hosts, a direct…

Vagrantゲスト同士でSSHできるようにする

経緯 WindowsでAnsibleを使いたかったので、VagrantでAnsible用VMを立ててそこからplaybookを流す vagrant-host-shellを導入 $ vagrant plugin install vagrant-host-shell insert_keyをfalseにする Vagrant.configure("2") do |config| ....... box = "ubun…

Vagrantfileを複数ファイルへ分割する

参考サイト Vagrantfileを分割する 子Vagrant的な使い方 ./Vagrantfile Vagrant.configure("2") do |config| config.ssh.insert_key = false config.vm.define "ansible-main" do |vagrant| box = "ubuntu/trusty64" vagrant.vm.box = box vagrant.vm.networ…

MaterialSheetFabライブラリ導入所感

GitHub https://github.com/gowong/material-sheet-fab LicenseはMIT。 Gradle CardViewを別途追記する。 dependencies { compile 'com.android.support:cardview-v7:26.0.1' compile 'com.gordonwong:material-sheet-fab:1.2.1' } ProGuard MaterialSheetFa…