Sutou Kouhei 2019-06-10 14:46:05 +0900 (Mon, 10 Jun 2019) Revision: 133597957a6c61b5c1b2bc670eb564b69227601f https://github.com/ranguba/chupa-text-vagrant/commit/133597957a6c61b5c1b2bc670eb564b69227601f Message: Use Ubuntu 18.04 Modified files: Vagrantfile ansible/files/home/chupa-text/chupa-text-http-server/Gemfile.local ansible/playbook.yml Modified: Vagrantfile (+2 -2) =================================================================== --- Vagrantfile 2017-07-18 17:59:48 +0900 (567a79b) +++ Vagrantfile 2019-06-10 14:46:05 +0900 (188bcc2) @@ -1,6 +1,6 @@ # -*- mode: ruby -*- # -# Copyright (C) 2017 Kouhei Sutou <kou****@clear*****> +# Copyright (C) 2017-2019 Sutou Kouhei <kou****@clear*****> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -19,7 +19,7 @@ Vagrant.configure("2") do |config| name = "chupa-text" config.vm.define(name) do |node| - node.vm.box = "bento/ubuntu-17.04" + node.vm.box = "bento/ubuntu-18.04" node.vm.network "forwarded_port", guest: 3000, host: 20080 # log_directory = "/var/log/chupa-text" # if File.exist?(log_directory) Modified: ansible/files/home/chupa-text/chupa-text-http-server/Gemfile.local (+4 -2) =================================================================== --- ansible/files/home/chupa-text/chupa-text-http-server/Gemfile.local 2017-07-18 17:59:48 +0900 (d435176) +++ ansible/files/home/chupa-text/chupa-text-http-server/Gemfile.local 2019-06-10 14:46:05 +0900 (a0aa12d) @@ -1,6 +1,6 @@ # -*- ruby -*- # -# Copyright (C) 2017 Kouhei Sutou <kou****@clear*****> +# Copyright (C) 2017-2019 Sutou Kouhei <kou****@clear*****> # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -18,5 +18,7 @@ gem "chupa-text-decomposer-html" gem "chupa-text-decomposer-webkit" -gem "chupa-text-decomposer-libreoffice" +gem "chupa-text-decomposer-libreoffice-excel" +gem "chupa-text-decomposer-libreoffice-powerpoint" +gem "chupa-text-decomposer-libreoffice-word" gem "chupa-text-decomposer-pdf" Modified: ansible/playbook.yml (+25 -31) =================================================================== --- ansible/playbook.yml 2017-07-18 17:59:48 +0900 (8996140) +++ ansible/playbook.yml 2019-06-10 14:46:05 +0900 (6e99f67) @@ -18,15 +18,10 @@ become: yes tasks: - name: Set timezone - # Ansible 2.2 is required - # timezone: - # name: Asia/Tokyo - command: timedatectl set-timezone Asia/Tokyo + timezone: + name: Asia/Tokyo - name: Enable NTP command: timedatectl set-ntp true - - name: Install aptitude - apt: - name: aptitude - name: Upgrade packages apt: update_cache: yes @@ -34,30 +29,29 @@ upgrade: safe - name: Install packages apt: - name: "{{ item }}" - with_items: - - apache2 - - apache2-dev - - curl - - g++ - - gcc - - git - - libapr1-dev - - libaprutil1-dev - - libcurl4-openssl-dev - - libreoffice - - libssl-dev - - make - - nodejs - - nodejs-legacy - - npm - - ruby - - ruby-dev - - squid - - sudo - - tzdata - - xvfb - - zlib1g-dev + name: + - apache2 + - apache2-dev + - curl + - g++ + - gcc + - git + - libapr1-dev + - libaprutil1-dev + - libcurl4-openssl-dev + - libreoffice + - libssl-dev + - make + - nodejs + - nodejs-legacy + - npm + - ruby + - ruby-dev + - squid + - sudo + - tzdata + - xvfb + - zlib1g-dev - name: Install Bundler gem: name: bundler -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://lists.osdn.me/mailman/archives/groonga-commit/attachments/20190610/a1554f85/attachment-0001.html>