├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── base ├── README.md ├── http │ └── preseed.cfg ├── local-test │ └── Vagrantfile ├── remote-test │ └── Vagrantfile ├── scripts │ ├── customize.sh │ ├── desktop.sh │ ├── minimize.sh │ ├── networking.sh │ ├── sshd.sh │ ├── sudoers.sh │ ├── update.sh │ ├── vagrant.sh │ └── virtualbox.sh ├── ubuntu-desktop-19.04-x64.json └── vagrantfile_templates │ └── ubuntu-desktop.rb ├── development ├── README.md ├── Vagrantfile └── usage │ └── Vagrantfile └── logo.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: vangj 4 | patreon: vangj 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: https://oneoffcoder.com/ 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | .DS_Store 3 | *.box 4 | packer_cache/ 5 | builds/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Purpose 2 | 3 | ![One-Off Coder Logo](/logo.png "One-Off Coder") 4 | 5 | A collection of Vagrant boxes for learning purposes. 6 | 7 | * [development](development): [A vagrant box with Java, Scala, Python, Node and Docker on Ubuntu Desktop v19.04](https://app.vagrantup.com/oneoffcoder/boxes/development). 8 | 9 | # Citation 10 | 11 | ``` 12 | @misc{oneoffcoder_vagrant_boxes_2019, 13 | title={Vagrant Boxes}, 14 | url={https://github.com/oneoffcoder/vagrant-boxes}, 15 | journal={GitHub}, 16 | author={One-Off Coder}, 17 | year={2019}, 18 | month={Aug}} 19 | ``` 20 | 21 | # Copyright Stuff 22 | 23 | ``` 24 | Copyright 2019 One-Off Coder 25 | 26 | Licensed under the Apache License, Version 2.0 (the "License"); 27 | you may not use this file except in compliance with the License. 28 | You may obtain a copy of the License at 29 | 30 | http://www.apache.org/licenses/LICENSE-2.0 31 | 32 | Unless required by applicable law or agreed to in writing, software 33 | distributed under the License is distributed on an "AS IS" BASIS, 34 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 35 | See the License for the specific language governing permissions and 36 | limitations under the License. 37 | ``` 38 | 39 | # Contact 40 | 41 | [One-Off Coder](https://app.vagrantup.com/oneoffcoder) 42 | * [Website](https://www.oneoffcoder.com) 43 | * [Twitter](https://twitter.com/oneoffcoder) 44 | * [Facebook](https://www.facebook.com/oneoffcoder) 45 | * [YouTube](https://www.youtube.com/channel/UCCCv8Glpb2dq2mhUj5mcHCQ) 46 | -------------------------------------------------------------------------------- /base/README.md: -------------------------------------------------------------------------------- 1 | # Purpose 2 | 3 | A [Packer](https://www.packer.io/) project to create an Ubuntu Desktop v19.04 x64 VirtualBox image. 4 | 5 | ```bash 6 | packer build ubuntu-desktop-19.04-x64.json 7 | ``` 8 | 9 | To add as a box locally. 10 | 11 | ```bash 12 | vagrant box add \ 13 | builds/ubuntu-desktop-19.04-x64.virtualbox.box \ 14 | --name ubuntu-desktop-19.04-x86-base 15 | ``` 16 | 17 | To create a VM instance against local box. 18 | 19 | ```bash 20 | vagrant init ubuntu-desktop-19.04-x86-base 21 | vagrant up 22 | ``` 23 | 24 | To remove local box. 25 | 26 | ```bash 27 | vagrant box remove ubuntu-desktop-19.04-x86-base 28 | ``` 29 | 30 | To publish. 31 | 32 | ```bash 33 | # login 34 | vagrant cloud auth login 35 | # whoami 36 | vagrant cloud auth whoami 37 | 38 | # publish 39 | vagrant cloud publish \ 40 | oneoffcoder/ubuntu-desktop-19.04-x86-base \ 41 | 0.0.1 \ 42 | virtualbox \ 43 | builds/ubuntu-desktop-19.04-x64.virtualbox.box \ 44 | --description "Ubuntu Desktop v19.04 from Packer" \ 45 | --short-description "Base Box, Ubuntu" \ 46 | --version-description "v0.0.1" \ 47 | --force \ 48 | --release 49 | ``` -------------------------------------------------------------------------------- /base/http/preseed.cfg: -------------------------------------------------------------------------------- 1 | choose-mirror-bin mirror/http/proxy string 2 | d-i base-installer/kernel/override-image string linux-server 3 | d-i clock-setup/utc boolean true 4 | d-i clock-setup/utc-auto boolean true 5 | d-i finish-install/reboot_in_progress note 6 | d-i grub-installer/only_debian boolean true 7 | d-i grub-installer/with_other_os boolean true 8 | d-i mirror/country string manual 9 | d-i mirror/http/directory string /ubuntu/ 10 | d-i mirror/http/hostname string archive.ubuntu.com 11 | d-i mirror/http/proxy string 12 | d-i partman-auto-lvm/guided_size string max 13 | d-i partman-auto/choose_recipe select atomic 14 | d-i partman-auto/method string lvm 15 | d-i partman-lvm/confirm boolean true 16 | d-i partman-lvm/confirm boolean true 17 | d-i partman-lvm/confirm_nooverwrite boolean true 18 | d-i partman-lvm/device_remove_lvm boolean true 19 | d-i partman/choose_partition select finish 20 | d-i partman/confirm boolean true 21 | d-i partman/confirm_nooverwrite boolean true 22 | d-i partman/confirm_write_new_label boolean true 23 | d-i passwd/user-fullname string vagrant 24 | d-i passwd/user-uid string 1000 25 | d-i passwd/user-password password vagrant 26 | d-i passwd/user-password-again password vagrant 27 | d-i passwd/username string vagrant 28 | d-i pkgsel/include string openssh-server cryptsetup build-essential libssl-dev libreadline-dev zlib1g-dev linux-source dkms nfs-common linux-headers-$(uname -r) perl cifs-utils software-properties-common 29 | d-i pkgsel/install-language-support boolean false 30 | d-i pkgsel/update-policy select none 31 | d-i pkgsel/upgrade select full-upgrade 32 | d-i time/zone string UTC 33 | d-i user-setup/allow-password-weak boolean true 34 | d-i user-setup/encrypt-home boolean false 35 | tasksel tasksel/first multiselect standard, server 36 | -------------------------------------------------------------------------------- /base/local-test/Vagrantfile: -------------------------------------------------------------------------------- 1 | # -*- mode: ruby -*- 2 | # vi: set ft=ruby : 3 | 4 | # All Vagrant configuration is done below. The "2" in Vagrant.configure 5 | # configures the configuration version (we support older styles for 6 | # backwards compatibility). Please don't change it unless you know what 7 | # you're doing. 8 | Vagrant.configure("2") do |config| 9 | # The most common configuration options are documented and commented below. 10 | # For a complete reference, please see the online documentation at 11 | # https://docs.vagrantup.com. 12 | 13 | # Every Vagrant development environment requires a box. You can search for 14 | # boxes at https://vagrantcloud.com/search. 15 | config.vm.box = "ubuntu-desktop-19.04-x86-base" 16 | 17 | # Disable automatic box update checking. If you disable this, then 18 | # boxes will only be checked for updates when the user runs 19 | # `vagrant box outdated`. This is not recommended. 20 | # config.vm.box_check_update = false 21 | 22 | # Create a forwarded port mapping which allows access to a specific port 23 | # within the machine from a port on the host machine. In the example below, 24 | # accessing "localhost:8080" will access port 80 on the guest machine. 25 | # NOTE: This will enable public access to the opened port 26 | # config.vm.network "forwarded_port", guest: 80, host: 8080 27 | 28 | # Create a forwarded port mapping which allows access to a specific port 29 | # within the machine from a port on the host machine and only allow access 30 | # via 127.0.0.1 to disable public access 31 | # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" 32 | 33 | # Create a private network, which allows host-only access to the machine 34 | # using a specific IP. 35 | # config.vm.network "private_network", ip: "192.168.33.10" 36 | 37 | # Create a public network, which generally matched to bridged network. 38 | # Bridged networks make the machine appear as another physical device on 39 | # your network. 40 | # config.vm.network "public_network" 41 | 42 | # Share an additional folder to the guest VM. The first argument is 43 | # the path on the host to the actual folder. The second argument is 44 | # the path on the guest to mount the folder. And the optional third 45 | # argument is a set of non-required options. 46 | # config.vm.synced_folder "../data", "/vagrant_data" 47 | 48 | # Provider-specific configuration so you can fine-tune various 49 | # backing providers for Vagrant. These expose provider-specific options. 50 | # Example for VirtualBox: 51 | # 52 | # config.vm.provider "virtualbox" do |vb| 53 | # # Display the VirtualBox GUI when booting the machine 54 | # vb.gui = true 55 | # 56 | # # Customize the amount of memory on the VM: 57 | # vb.memory = "1024" 58 | # end 59 | # 60 | # View the documentation for the provider you are using for more 61 | # information on available options. 62 | 63 | # Enable provisioning with a shell script. Additional provisioners such as 64 | # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the 65 | # documentation for more information about their specific syntax and use. 66 | # config.vm.provision "shell", inline: <<-SHELL 67 | # apt-get update 68 | # apt-get install -y apache2 69 | # SHELL 70 | end 71 | -------------------------------------------------------------------------------- /base/remote-test/Vagrantfile: -------------------------------------------------------------------------------- 1 | Vagrant.configure("2") do |config| 2 | config.vm.box = "oneoffcoder/ubuntu-desktop-19.04-x86-base" 3 | config.vm.box_version = "0.0.1" 4 | end -------------------------------------------------------------------------------- /base/scripts/customize.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -eux 2 | 3 | apt-get remove -y --purge libreoffice* thunderbird* rhythmbox* aisleriot gnome-sudoku gnome-mahjongg mahjongg ace-of-penguins gnomine gbrainy gnome-mines xiterm+thai cheese remmina gnome-todo totem totem-plugins 4 | wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/google-chrome-stable_current_amd64.deb 5 | dpkg -i /tmp/google-chrome-stable_current_amd64.deb 6 | rm -f /tmp/google-chrome-stable_current_amd64.deb -------------------------------------------------------------------------------- /base/scripts/desktop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -eux 2 | 3 | apt-get install -y ubuntu-desktop 4 | reboot 5 | -------------------------------------------------------------------------------- /base/scripts/minimize.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -eux 2 | 3 | case "$PACKER_BUILDER_TYPE" in 4 | qemu) exit 0 ;; 5 | esac 6 | 7 | # Whiteout root 8 | count=$(df --sync -kP / | tail -n1 | awk -F ' ' '{print $4}') 9 | count=$(($count-1)) 10 | dd if=/dev/zero of=/tmp/whitespace bs=1M count=$count || echo "dd exit code $? is suppressed"; 11 | rm /tmp/whitespace 12 | 13 | # Whiteout /boot 14 | count=$(df --sync -kP /boot | tail -n1 | awk -F ' ' '{print $4}') 15 | count=$(($count-1)) 16 | dd if=/dev/zero of=/boot/whitespace bs=1M count=$count || echo "dd exit code $? is suppressed"; 17 | rm /boot/whitespace 18 | 19 | set +e 20 | swapuuid="`/sbin/blkid -o value -l -s UUID -t TYPE=swap`"; 21 | case "$?" in 22 | 2|0) ;; 23 | *) exit 1 ;; 24 | esac 25 | set -e 26 | 27 | if [ "x${swapuuid}" != "x" ]; then 28 | # Whiteout the swap partition to reduce box size 29 | # Swap is disabled till reboot 30 | swappart="`readlink -f /dev/disk/by-uuid/$swapuuid`"; 31 | /sbin/swapoff "$swappart"; 32 | dd if=/dev/zero of="$swappart" bs=1M || echo "dd exit code $? is suppressed"; 33 | /sbin/mkswap -U "$swapuuid" "$swappart"; 34 | fi 35 | 36 | sync; 37 | -------------------------------------------------------------------------------- /base/scripts/networking.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -eux 2 | 3 | ubuntu_version="`lsb_release -r | awk '{print $2}'`"; 4 | major_version="`echo $ubuntu_version | awk -F. '{print $1}'`"; 5 | 6 | if [ "$ubuntu_version" = '17.10' ] || [ "$major_version" -ge "18" ]; then 7 | echo "Create netplan config for eth0" 8 | cat </etc/netplan/01-netcfg.yaml; 9 | network: 10 | version: 2 11 | ethernets: 12 | eth0: 13 | dhcp4: true 14 | EOF 15 | else 16 | # Adding a 2 sec delay to the interface up, to make the dhclient happy 17 | echo "pre-up sleep 2" >> /etc/network/interfaces; 18 | fi 19 | 20 | if [ "$major_version" -ge "16" ]; then 21 | # Disable Predictable Network Interface names and use eth0 22 | sed -i 's/en[[:alnum:]]*/eth0/g' /etc/network/interfaces; 23 | sed -i 's/GRUB_CMDLINE_LINUX="\(.*\)"/GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0 \1"/g' /etc/default/grub; 24 | update-grub; 25 | fi 26 | -------------------------------------------------------------------------------- /base/scripts/sshd.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -eux 2 | 3 | SSHD_CONFIG="/etc/ssh/sshd_config" 4 | 5 | # ensure that there is a trailing newline before attempting to concatenate 6 | sed -i -e '$a\' "$SSHD_CONFIG" 7 | 8 | USEDNS="UseDNS no" 9 | if grep -q -E "^[[:space:]]*UseDNS" "$SSHD_CONFIG"; then 10 | sed -i "s/^\s*UseDNS.*/${USEDNS}/" "$SSHD_CONFIG" 11 | else 12 | echo "$USEDNS" >>"$SSHD_CONFIG" 13 | fi 14 | 15 | GSSAPI="GSSAPIAuthentication no" 16 | if grep -q -E "^[[:space:]]*GSSAPIAuthentication" "$SSHD_CONFIG"; then 17 | sed -i "s/^\s*GSSAPIAuthentication.*/${GSSAPI}/" "$SSHD_CONFIG" 18 | else 19 | echo "$GSSAPI" >>"$SSHD_CONFIG" 20 | fi 21 | -------------------------------------------------------------------------------- /base/scripts/sudoers.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -eux 2 | 3 | sed -i -e '/Defaults\s\+env_reset/a Defaults\texempt_group=sudo' /etc/sudoers; 4 | 5 | # Set up password-less sudo for the vagrant user 6 | echo 'vagrant ALL=(ALL) NOPASSWD:ALL' >/etc/sudoers.d/99_vagrant; 7 | chmod 440 /etc/sudoers.d/99_vagrant; 8 | -------------------------------------------------------------------------------- /base/scripts/update.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -eux 2 | export DEBIAN_FRONTEND=noninteractive 3 | 4 | ubuntu_version="`lsb_release -r | awk '{print $2}'`"; 5 | major_version="`echo $ubuntu_version | awk -F. '{print $1}'`"; 6 | 7 | # workaround for ubuntu 18.10 8 | sed -i s"/deb cdrom/#deb cdrom/" /etc/apt/sources.list 9 | 10 | # Disable release-upgrades 11 | sed -i.bak 's/^Prompt=.*$/Prompt=never/' /etc/update-manager/release-upgrades; 12 | 13 | # Disable systemd apt timers/services 14 | if [ "$major_version" -ge "16" ]; then 15 | systemctl stop apt-daily.timer; 16 | systemctl stop apt-daily-upgrade.timer; 17 | systemctl disable apt-daily.timer; 18 | systemctl disable apt-daily-upgrade.timer; 19 | systemctl mask apt-daily.service; 20 | systemctl mask apt-daily-upgrade.service; 21 | systemctl daemon-reload; 22 | fi 23 | 24 | # Disable periodic activities of apt to be safe 25 | cat </etc/apt/apt.conf.d/10periodic; 26 | APT::Periodic::Enable "0"; 27 | APT::Periodic::Update-Package-Lists "0"; 28 | APT::Periodic::Download-Upgradeable-Packages "0"; 29 | APT::Periodic::AutocleanInterval "0"; 30 | APT::Periodic::Unattended-Upgrade "0"; 31 | EOF 32 | 33 | # Clean and nuke the package from orbit 34 | rm -rf /var/log/unattended-upgrades; 35 | apt-get -y purge unattended-upgrades; 36 | 37 | # Update the package list 38 | apt-get -y update; 39 | 40 | # Upgrade all installed packages incl. kernel and kernel headers 41 | apt-get -y dist-upgrade -o Dpkg::Options::="--force-confnew"; 42 | -------------------------------------------------------------------------------- /base/scripts/vagrant.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -eux 2 | 3 | pubkey_url="https://raw.githubusercontent.com/mitchellh/vagrant/master/keys/vagrant.pub"; 4 | mkdir -p $HOME_DIR/.ssh; 5 | if command -v wget >/dev/null 2>&1; then 6 | wget --no-check-certificate "$pubkey_url" -O $HOME_DIR/.ssh/authorized_keys; 7 | elif command -v curl >/dev/null 2>&1; then 8 | curl --insecure --location "$pubkey_url" > $HOME_DIR/.ssh/authorized_keys; 9 | else 10 | echo "Cannot download vagrant public key"; 11 | exit 1; 12 | fi 13 | chown -R vagrant $HOME_DIR/.ssh; 14 | chmod -R go-rwsx $HOME_DIR/.ssh; 15 | -------------------------------------------------------------------------------- /base/scripts/virtualbox.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -eux 2 | 3 | # set a default HOME_DIR environment variable if not set 4 | HOME_DIR="${HOME_DIR:-/home/vagrant}"; 5 | 6 | case "$PACKER_BUILDER_TYPE" in 7 | virtualbox-iso|virtualbox-ovf) 8 | VER="`cat $HOME_DIR/.vbox_version`"; 9 | ISO="VBoxGuestAdditions_$VER.iso"; 10 | mkdir -p /tmp/vbox; 11 | mount -o loop $HOME_DIR/$ISO /tmp/vbox; 12 | sh /tmp/vbox/VBoxLinuxAdditions.run \ 13 | || echo "VBoxLinuxAdditions.run exited $? and is suppressed." \ 14 | "For more read https://www.virtualbox.org/ticket/12479"; 15 | umount /tmp/vbox; 16 | rm -rf /tmp/vbox; 17 | rm -f $HOME_DIR/*.iso; 18 | ;; 19 | esac 20 | -------------------------------------------------------------------------------- /base/ubuntu-desktop-19.04-x64.json: -------------------------------------------------------------------------------- 1 | { 2 | "builders": [ 3 | { 4 | "boot_command": [ 5 | "", 6 | "", 7 | "", 8 | "/install/vmlinuz", 9 | " auto", 10 | " console-setup/ask_detect=false", 11 | " console-setup/layoutcode=us", 12 | " console-setup/modelcode=pc105", 13 | " debconf/frontend=noninteractive", 14 | " debian-installer=en_US.UTF-8", 15 | " fb=false", 16 | " initrd=/install/initrd.gz", 17 | " kbd-chooser/method=us", 18 | " keyboard-configuration/layout=USA", 19 | " keyboard-configuration/variant=USA", 20 | " locale=en_US.UTF-8", 21 | " netcfg/get_domain=vm", 22 | " netcfg/get_hostname=vagrant", 23 | " grub-installer/bootdev=/dev/sda", 24 | " noapic", 25 | " preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `preseed_path`}}", 26 | " -- ", 27 | "" 28 | ], 29 | "boot_wait": "10s", 30 | "disk_size": "{{user `disk_size`}}", 31 | "guest_additions_path": "VBoxGuestAdditions_{{.Version}}.iso", 32 | "guest_os_type": "Ubuntu_64", 33 | "hard_drive_interface": "sata", 34 | "headless": "{{ user `headless` }}", 35 | "http_directory": "http", 36 | "iso_checksum": "{{user `iso_checksum`}}", 37 | "iso_checksum_type": "{{user `iso_checksum_type`}}", 38 | "iso_url": "{{user `mirror`}}/{{user `mirror_directory`}}/{{user `iso_name`}}", 39 | "output_directory": "../builds/packer-{{user `template`}}-virtualbox", 40 | "shutdown_command": "echo 'vagrant' | sudo -S shutdown -P now", 41 | "ssh_password": "vagrant", 42 | "ssh_port": 22, 43 | "ssh_username": "vagrant", 44 | "ssh_wait_timeout": "10000s", 45 | "type": "virtualbox-iso", 46 | "vboxmanage": [ 47 | [ 48 | "modifyvm", 49 | "{{.Name}}", 50 | "--memory", 51 | "{{ user `memory` }}" 52 | ], 53 | [ 54 | "modifyvm", 55 | "{{.Name}}", 56 | "--cpus", 57 | "{{ user `cpus` }}" 58 | ], 59 | [ 60 | "modifyvm", 61 | "{{.Name}}", 62 | "--cpuexecutioncap", 63 | "{{ user `cpuexecutioncap` }}" 64 | ], 65 | [ 66 | "modifyvm", 67 | "{{.Name}}", 68 | "--vram", 69 | "{{ user `vram` }}" 70 | ] 71 | ], 72 | "virtualbox_version_file": ".vbox_version", 73 | "vm_name": "{{ user `template` }}" 74 | } 75 | ], 76 | "post-processors": [ 77 | { 78 | "output": "builds/{{user `box_basename`}}.{{.Provider}}.box", 79 | "type": "vagrant", 80 | "vagrantfile_template": "vagrantfile_templates/ubuntu-desktop.rb" 81 | } 82 | ], 83 | "provisioners": [ 84 | { 85 | "environment_vars": [ 86 | "HOME_DIR=/home/vagrant", 87 | "http_proxy={{user `http_proxy`}}", 88 | "https_proxy={{user `https_proxy`}}", 89 | "no_proxy={{user `no_proxy`}}" 90 | ], 91 | "execute_command": "echo 'vagrant' | {{.Vars}} sudo -S -E sh -eux '{{.Path}}'", 92 | "expect_disconnect": true, 93 | "scripts": [ 94 | "scripts/update.sh", 95 | "scripts/sshd.sh", 96 | "scripts/networking.sh", 97 | "scripts/sudoers.sh", 98 | "scripts/desktop.sh", 99 | "scripts/customize.sh", 100 | "scripts/vagrant.sh", 101 | "scripts/virtualbox.sh", 102 | "scripts/minimize.sh" 103 | ], 104 | "type": "shell" 105 | } 106 | ], 107 | "variables": { 108 | "box_basename": "ubuntu-desktop-19.04-x64", 109 | "build_timestamp": "{{isotime \"20060102150405\"}}", 110 | "cpus": "4", 111 | "disk_size": "25000", 112 | "cpuexecutioncap": "100", 113 | "git_revision": "__unknown_git_revision__", 114 | "headless": "", 115 | "http_proxy": "{{env `http_proxy`}}", 116 | "https_proxy": "{{env `https_proxy`}}", 117 | "iso_checksum": "7e8a0d07522f591dfee9bc9fcd7c05466763161e6cb0117906655bce1750b2fa", 118 | "iso_checksum_type": "sha256", 119 | "iso_name": "ubuntu-19.04-server-amd64.iso", 120 | "memory": "5120", 121 | "mirror": "http://cdimage.ubuntu.com", 122 | "mirror_directory": "ubuntu/releases/19.04/release", 123 | "name": "ubuntu-desktop-19.04", 124 | "no_proxy": "{{env `no_proxy`}}", 125 | "preseed_path": "preseed.cfg", 126 | "template": "ubuntu-desktop-19.04-x64", 127 | "version": "TIMESTAMP", 128 | "vram": "256" 129 | } 130 | } 131 | -------------------------------------------------------------------------------- /base/vagrantfile_templates/ubuntu-desktop.rb: -------------------------------------------------------------------------------- 1 | Vagrant.require_version ">= 1.7.3" 2 | 3 | Vagrant.configure(2) do |config| 4 | config.vm.provider "virtualbox" do |v, override| 5 | v.gui = true 6 | v.memory = "5120" 7 | v.cpus = 4 8 | v.customize ["modifyvm", :id, "--cpuexecutioncap", "100"] 9 | v.customize ["modifyvm", :id, "--vram", "128"] 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /development/README.md: -------------------------------------------------------------------------------- 1 | # Purpose 2 | 3 | A [vagrant box](https://app.vagrantup.com/oneoffcoder/boxes/development) with 4 | 5 | * Docker (latest) 6 | * Miniconda v3 with Python 3.7 7 | * OpenJDK v1.8 8 | * Maven v3.6.1 9 | * Ant v1.9.14 10 | * SBT v1.2.8 11 | * Node v12.9.1 12 | * VS Code (latest) 13 | 14 | # Use 15 | 16 | To bring up. 17 | 18 | ```bash 19 | vagrant up 20 | ``` 21 | 22 | To shutdown. 23 | 24 | ```bash 25 | vagrant halt 26 | ``` 27 | 28 | To destroy. 29 | 30 | ```bash 31 | vagrant destroy -f 32 | ``` 33 | 34 | To SSH into the VM. The login/password is `vagrant/vagrant`. 35 | 36 | ```bash 37 | vagrant ssh 38 | ``` 39 | 40 | To package. 41 | 42 | ```bash 43 | vagrant package --output ubuntu-desktop-19.04-x86-v0.0.4.box 44 | ``` 45 | 46 | To publish. 47 | 48 | ```bash 49 | # login 50 | vagrant cloud auth login 51 | # whoami 52 | vagrant cloud auth whoami 53 | 54 | # publish 55 | vagrant cloud publish \ 56 | oneoffcoder/development \ 57 | 0.0.4 \ 58 | virtualbox \ 59 | ubuntu-desktop-19.04-x86-v0.0.4.box \ 60 | --description "Ubuntu 19.04 Desktop with Java, Scala, Python, Node, Docker and VS Code" \ 61 | --force \ 62 | --release 63 | 64 | # publish on windows 65 | vagrant cloud publish ^ 66 | oneoffcoder/development ^ 67 | 0.0.4 ^ 68 | virtualbox ^ 69 | ubuntu-desktop-19.04-x86-v0.0.4.box ^ 70 | --description "Ubuntu 19.04 Desktop with Java, Scala, Python, Node, Docker and VS Code" ^ 71 | --force ^ 72 | --release 73 | ``` 74 | 75 | # Usage 76 | 77 | If you just want to use the box. 78 | 79 | ```bash 80 | vagrant init oneoffcoder/development --box-version 0.0.1 81 | vagrant up 82 | ``` 83 | 84 | If you want to customize the box, see [usage/Vagrantfile](usage/Vagrantfile). -------------------------------------------------------------------------------- /development/Vagrantfile: -------------------------------------------------------------------------------- 1 | # -*- mode: ruby -*- 2 | # vi: set ft=ruby : 3 | require 'date' 4 | 5 | # All Vagrant configuration is done below. The "2" in Vagrant.configure 6 | # configures the configuration version (we support older styles for 7 | # backwards compatibility). Please don't change it unless you know what 8 | # you're doing. 9 | Vagrant.configure("2") do |config| 10 | # hostName = "oneoffcoder-#{DateTime.now.strftime('%Q')}" 11 | hostName = "oneoffcoder-development" 12 | postUpMessage = <<-MSG 13 | Login/Password: vagrant/vagrant 14 | 15 | A vagrant box for learning. 16 | 17 | One-Off Coder 18 | info@oneoffcoder.com 19 | https://www.oneoffcoder.com 20 | MSG 21 | # The most common configuration options are documented and commented below. 22 | # For a complete reference, please see the online documentation at 23 | # https://docs.vagrantup.com. 24 | 25 | # Every Vagrant development environment requires a box. You can search for 26 | # boxes at https://vagrantcloud.com/search. 27 | config.vm.box = "oneoffcoder/ubuntu-desktop-19.04-x86" 28 | config.vm.box_version = "0.0.2" 29 | config.vm.hostname = hostName 30 | config.vm.post_up_message = postUpMessage 31 | 32 | # Disable automatic box update checking. If you disable this, then 33 | # boxes will only be checked for updates when the user runs 34 | # `vagrant box outdated`. This is not recommended. 35 | # config.vm.box_check_update = false 36 | 37 | # Create a forwarded port mapping which allows access to a specific port 38 | # within the machine from a port on the host machine. In the example below, 39 | # accessing "localhost:8080" will access port 80 on the guest machine. 40 | # NOTE: This will enable public access to the opened port 41 | # config.vm.network "forwarded_port", guest: 80, host: 8080 42 | 43 | # Create a forwarded port mapping which allows access to a specific port 44 | # within the machine from a port on the host machine and only allow access 45 | # via 127.0.0.1 to disable public access 46 | # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" 47 | 48 | # Create a private network, which allows host-only access to the machine 49 | # using a specific IP. 50 | # config.vm.network "private_network", ip: "192.168.33.10" 51 | 52 | # Create a public network, which generally matched to bridged network. 53 | # Bridged networks make the machine appear as another physical device on 54 | # your network. 55 | # config.vm.network "public_network" 56 | 57 | # Share an additional folder to the guest VM. The first argument is 58 | # the path on the host to the actual folder. The second argument is 59 | # the path on the guest to mount the folder. And the optional third 60 | # argument is a set of non-required options. 61 | # config.vm.synced_folder "../data", "/vagrant_data" 62 | 63 | # Provider-specific configuration so you can fine-tune various 64 | # backing providers for Vagrant. These expose provider-specific options. 65 | # Example for VirtualBox: 66 | # 67 | config.vm.provider "virtualbox" do |vb| 68 | # Display the VirtualBox GUI when booting the machine 69 | vb.gui = true 70 | 71 | # Customize the amount of memory on the VM: 72 | vb.memory = "5120" 73 | vb.cpus = 4 74 | vb.customize ["modifyvm", :id, "--cpuexecutioncap", "100"] 75 | vb.customize ["modifyvm", :id, "--vram", "128"] 76 | vb.name = hostName 77 | end 78 | # 79 | # View the documentation for the provider you are using for more 80 | # information on available options. 81 | 82 | # Enable provisioning with a shell script. Additional provisioners such as 83 | # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the 84 | # documentation for more information about their specific syntax and use. 85 | config.vm.provision "shell", inline: <<-SHELL 86 | # APT INSTALL 87 | killall apt apt-get 88 | rm -f /var/lib/apt/lists/lock \ 89 | /var/cache/apt/archives/lock \ 90 | /var/lib/dpkg/lock* 91 | apt-get update 92 | apt-get upgrade -y 93 | # JAVA 94 | apt-get install -y openjdk-8-jdk 95 | wget -q http://ftp.wayne.edu/apache/maven/maven-3/3.6.1/binaries/apache-maven-3.6.1-bin.tar.gz -O /tmp/maven.tar.gz 96 | wget -q http://apache-mirror.8birdsvideo.com//ant/binaries/apache-ant-1.9.14-bin.tar.gz -O /tmp/ant.tar.gz 97 | wget -q http://apache.mirrors.ionfish.org//ant/ivy/2.5.0-rc1/apache-ivy-2.5.0-rc1-bin.tar.gz -O /tmp/ivy.tar.gz 98 | wget -q https://piccolo.link/sbt-1.2.8.tgz -O /tmp/sbt.tgz 99 | tar xfz /tmp/maven.tar.gz -C /home/vagrant/ 100 | tar xfz /tmp/ant.tar.gz -C /home/vagrant/ 101 | tar xfz /tmp/ivy.tar.gz -C /tmp/ 102 | tar xfz /tmp/sbt.tgz -C /home/vagrant/ 103 | ln -s /home/vagrant/apache-maven-3.6.1/ /home/vagrant/maven 104 | ln -s /home/vagrant/apache-ant-1.9.14 /home/vagrant/ant 105 | cp /tmp/apache-ivy-2.5.0-rc1/ivy-2.5.0-rc1.jar /home/vagrant/ant/lib 106 | # NODE 107 | wget -q https://nodejs.org/dist/v12.9.1/node-v12.9.1-linux-x64.tar.xz -O /tmp/node.tar.xz 108 | tar -xJf /tmp/node.tar.xz -C /home/vagrant/ 109 | ln -s /home/vagrant/node-v12.9.1-linux-x64/ /home/vagrant/node 110 | ln -s /home/vagrant/node/bin/node /usr/bin/node 111 | ln -s /home/vagrant/node/bin/npm /usr/bin/npm 112 | ln -s /home/vagrant/node/bin/npx /usr/bin/npx 113 | npm install -g @angular/cli -y 114 | # DOCKER INSTALL 115 | apt-get install -y \ 116 | apt-transport-https \ 117 | ca-certificates \ 118 | curl \ 119 | gnupg-agent \ 120 | software-properties-common 121 | curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 122 | apt-key fingerprint 0EBFCD88 123 | add-apt-repository \ 124 | "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ 125 | $(lsb_release -cs) \ 126 | stable" 127 | apt-get update 128 | apt-get install -y docker-ce docker-ce-cli containerd.io 129 | usermod -aG docker vagrant 130 | # MINICONDA INSTALL 131 | wget -q https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /tmp/miniconda.sh 132 | /bin/bash /tmp/miniconda.sh -b -p /home/vagrant/miniconda 133 | /home/vagrant/miniconda/bin/conda update -n root conda -q -y 134 | /home/vagrant/miniconda/bin/conda update --all -q -y 135 | /home/vagrant/miniconda/bin/pip install --upgrade pip 136 | /home/vagrant/miniconda/bin/conda install -q -y flask flask-cors numpy scipy scikit-learn pymysql seaborn matplotlib nltk spacy gensim networkx joblib jupyter jupyterlab shap lime textblob nose coverage flake8 pep8 pyflakes pandas matplotlib=3.1.0 pygraphviz sphinx sphinx_rtd_theme twine ipympl nodejs missingno -c conda-forge 137 | /home/vagrant/miniconda/bin/jupyter labextension install @jupyter-widgets/jupyterlab-manager 138 | /home/vagrant/miniconda/bin/jupyter labextension install jupyter-matplotlib 139 | /home/vagrant/miniconda/bin/python -m nltk.downloader all 140 | /home/vagrant/miniconda/bin/python -m spacy download en_core_web_sm 141 | chown -R vagrant:vagrant /home/vagrant/miniconda 142 | # VS Code 143 | snap install --classic code 144 | # ADDITIONAL APT 145 | apt-get autoclean 146 | apt-get clean 147 | apt-get install -y libgraphviz-dev 148 | # PATH SETUP 149 | echo "CONDA_HOME=/home/vagrant/miniconda" >> /home/vagrant/.bashrc 150 | echo "MAVEN_HOME=/home/vagrant/maven" >> /home/vagrant/.bashrc 151 | echo "ANT_HOME=/home/vagrant/ant" >> /home/vagrant/.bashrc 152 | echo "SBT_HOME=/home/vagrant/sbt" >> /home/vagrant/.bashrc 153 | echo "NODE_HOME=/home/vagrant/node" >> /home/vagrant/.bashrc 154 | echo 'PATH=$CONDA_HOME/bin:$PATH' >> /home/vagrant/.bashrc 155 | echo 'PATH=$MAVEN_HOME/bin:$PATH' >> /home/vagrant/.bashrc 156 | echo 'PATH=$ANT_HOME/bin:$PATH' >> /home/vagrant/.bashrc 157 | echo 'PATH=$SBT_HOME/bin:$PATH' >> /home/vagrant/.bashrc 158 | echo 'PATH=$NODE_HOME/bin:$PATH' >> /home/vagrant/.bashrc 159 | # CHROME 160 | apt install gdebi-core 161 | wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/google-chrome-stable_current_amd64.deb 162 | gdebi --n /tmp/google-chrome-stable_current_amd64.deb 163 | # CLEAN UP 164 | apt-get autoremove -y 165 | apt-get autoclean 166 | apt-get clean 167 | sudo rm -fr /var/lib/apt/lists/* \ 168 | /tmp/* \ 169 | /var/tmp/* \ 170 | /var/cache/apt/archives/lock \ 171 | /var/lib/dpkg/lock* \ 172 | /home/vagrant/Downloads/* 173 | history -c 174 | SHELL 175 | end 176 | -------------------------------------------------------------------------------- /development/usage/Vagrantfile: -------------------------------------------------------------------------------- 1 | # -*- mode: ruby -*- 2 | # vi: set ft=ruby : 3 | require 'date' 4 | 5 | Vagrant.configure("2") do |config| 6 | hostName = "oneoffcoder-#{DateTime.now.strftime('%Q')}" 7 | postUpMessage = <<-MSG 8 | Login/Password: vagrant/vagrant 9 | 10 | A vagrant box for learning. 11 | 12 | One-Off Coder 13 | info@oneoffcoder.com 14 | https://www.oneoffcoder.com 15 | MSG 16 | 17 | config.vm.box = "oneoffcoder/development" 18 | config.vm.box_version = "0.0.4" 19 | config.vm.hostname = hostName 20 | config.vm.post_up_message = postUpMessage 21 | 22 | config.vm.provider "virtualbox" do |vb| 23 | vb.gui = true 24 | vb.memory = "5120" 25 | vb.cpus = 4 26 | vb.customize ["modifyvm", :id, "--cpuexecutioncap", "100"] 27 | vb.customize ["modifyvm", :id, "--vram", "128"] 28 | vb.name = hostName 29 | end 30 | end 31 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oneoffcoder/vagrant-boxes/7de35138453f928f2cf29e939447491dbe71218f/logo.png --------------------------------------------------------------------------------