puphpet / puphpet

Vagrant/Puppet GUI
Other
3.83k stars 625 forks source link

RVM GPG error on vagrant up with default settings #2831

Closed specky-rum closed 5 years ago

specky-rum commented 5 years ago

Hi,

I'm getting errors for the RVM GPG key on vagrant up. This is reproducible using all default settings on the PuPHPet GUI.

config.yaml (with only minor changes from defaults to add a bit of memory and 2 CPUs):

vagrantfile:
    target: local
    vm:
        provider:
            local:
                box: bento/ubuntu-16.04
                box_url: 'false'
                box_version: '0'
                chosen_virtualizer: virtualbox
                virtualizers:
                    virtualbox:
                        modifyvm:
                            natdnshostresolver1: false
                        showgui: 0
                    vmware:
                        numvcpus: 1
                    parallels:
                        linked_clone: 0
                        check_guest_tools: 0
                        update_guest_tools: 0
                machines:
                    machine1:
                        id: machine1
                        hostname: machine1.puphpet
                        network:
                            private_network: 192.168.56.109
                            forwarded_port:
                                port1:
                                    host: '8391'
                                    guest: '22'
                        memory: '2048'
                        cpus: '2'
        provision:
            puppet:
                manifests_path: puphpet/puppet/manifests
                module_path:
                    - puphpet/puppet/modules
                    - puphpet/puppet/manifests
                options:
                    - '--verbose'
                    - '--hiera_config /opt/puphpet/puppet/hiera.yaml'
        synced_folder:
            folder1:
                owner: vagrant
                group: vagrant
                source: ./
                target: /var/www
                sync_type: default
                smb:
                    smb_host: ''
                    smb_username: ''
                    smb_password: ''
                    mount_options:
                        dir_mode: '0775'
                        file_mode: '0664'
                rsync:
                    args:
                        - '--verbose'
                        - '--archive'
                        - '-z'
                    exclude:
                        - .vagrant/
                        - .git/
                    auto: 'true'
        usable_port_range:
            start: 10200
            stop: 10500
        post_up_message: ''
    ssh:
        host: 'false'
        port: 'false'
        private_key_path: 'false'
        username: vagrant
        guest_port: 'false'
        keep_alive: '1'
        forward_agent: 'false'
        forward_x11: 'false'
        shell: 'bash -l'
        insert_key: 'false'
    vagrant:
        host: detect
    proxy:
        http: ''
        https: ''
        ftp: ''
        no_proxy: ''
server:
    install: '1'
    packages:
        - bash-completion
        - htop
        - vim
users_groups:
    install: '1'
    groups: {  }
    users: {  }
locale:
    install: '1'
    settings:
        default_locale: en_US.UTF-8
        locales:
            - en_GB.UTF-8
            - en_US.UTF-8
        timezone: UTC
firewall:
    install: '1'
    rules: {  }
resolv:
    install: '1'
    nameservers:
        - 8.8.8.8
        - 8.8.4.4
    domainname: ''
    searchpath: {  }
cron:
    install: '1'
    jobs: {  }
nginx:
    install: '1'
    settings:
        version: present
        default_vhost: 1
        proxy_buffers: '4 256k'
        proxy_buffer_size: 128k
        proxy_connect_timeout: 600s
        proxy_send_timeout: 600s
        proxy_read_timeout: 600s
        names_hash_bucket_size: 128
    upstreams: {  }
    vhosts:
        vhost1:
            server_name: awesome.test
            server_aliases:
                - www.awesome.test
            www_root: /var/www/awesome
            listen_port: '80'
            client_max_body_size: 1m
            ssl: '0'
            locations:
                php_html:
                    www_root: /var/www/awesome
                    location: /
                    autoindex: 'off'
                    internal: 'false'
                    index_files:
                        - index.html
                        - index.php
                    try_files:
                        - $uri
                        - $uri/
                        - /index.php$is_args$args
                php_php:
                    www_root: /var/www/awesome
                    location: '~ \.php$'
                    autoindex: 'off'
                    internal: 'false'
                    index_files:
                        - index.php
                    try_files:
                        - $uri
                        - $uri/
                    set:
                        - '$path_info $fastcgi_path_info'
                    fastcgi: '127.0.0.1:9000'
                    fastcgi_index: index.php
                    fastcgi_split_path: '^(.+?\.php)(/.*)$'
                    fast_cgi_params_extra:
                        - 'SCRIPT_FILENAME $document_root$fastcgi_script_name'
    proxies: {  }
apache:
    install: '0'
    settings:
        version: 2.4
        user: www-data
        group: www-data
        default_vhost: true
        manage_user: false
        manage_group: false
        sendfile: 0
    modules:
        - proxy_fcgi
        - rewrite
    vhosts:
        vhost1:
            servername: awesome.test
            serveraliases:
                - www.awesome.test
            docroot: /var/www/awesome
            port: '80'
            setenvif:
                - 'Authorization "(.*)" HTTP_AUTHORIZATION=$1'
            ssl: '0'
            ssl_cert: LETSENCRYPT
            ssl_key: LETSENCRYPT
            ssl_chain: LETSENCRYPT
            ssl_certs_dir: LETSENCRYPT
            ssl_protocol: ''
            ssl_cipher: ''
            directories:
                php_html:
                    provider: directory
                    path: /var/www/awesome
                    directoryindex: 'index.php index.html'
                    options:
                        - Indexes
                        - FollowSymlinks
                        - MultiViews
                    allow_override:
                        - All
                    require:
                        - 'all granted'
                php_php:
                    provider: filesmatch
                    path: \.php$
                    sethandler: 'proxy:fcgi://127.0.0.1:9000'
letsencrypt:
    install: '1'
    settings:
        email: ''
        webserver_service: ''
    domains: {  }
php:
    install: '1'
    settings:
        version: '7.2'
    modules:
        php:
            - cli
            - intl
            - xml
        pear: {  }
        pecl: {  }
    ini:
        display_errors: 'On'
        error_reporting: '-1'
        session.save_path: /var/lib/php/session
        date.timezone: UTC
    fpm_ini:
        error_log: /var/log/php-fpm.log
    fpm_pools:
        pool1:
            ini:
                prefix: www
                listen: '127.0.0.1:9000'
                security.limit_extensions: .php
                user: www-user
                group: www-data
    composer: '1'
    composer_home: ''
xdebug:
    install: '0'
    settings:
        xdebug.default_enable: '1'
        xdebug.remote_autostart: '0'
        xdebug.remote_connect_back: '1'
        xdebug.remote_enable: '1'
        xdebug.remote_handler: dbgp
        xdebug.remote_port: '9000'
blackfire:
    install: '0'
    settings:
        server_id: ''
        server_token: ''
        agent:
            http_proxy: ''
            https_proxy: ''
            log_file: stderr
            log_level: '1'
        php:
            agent_timeout: '0.25'
            log_file: ''
            log_level: '1'
wpcli:
    install: '0'
drush:
    install: '0'
    version: 8.0.5
ruby:
    install: '1'
    versions:
        ruby1:
            default: '1'
            bundler: '1'
            version: '2.4'
            gems:
                - deep_merge@1.2.1
                - activesupport@5.1.4
                - vine@0.4
python:
    install: '1'
    packages: {  }
    versions: {  }
nodejs:
    install: '0'
    settings:
        version: '6'
    npm_packages: {  }
mariadb:
    install: '1'
    settings:
        version: '10.1'
        root_password: '123'
        override_options: {  }
    users:
        user1:
            name: dbuser
            password: '123'
    databases:
        database1:
            name: dbname
            collate: utf8_general_ci
            sql: ''
    grants:
        grant1:
            user: dbuser
            table: '*.*'
            privileges:
                - ALL
mysql:
    install: '0'
    settings:
        version: '5.7'
        root_password: '123'
        override_options: {  }
    users:
        user1:
            name: dbuser
            password: '123'
    databases:
        database1:
            name: dbname
            collate: utf8_general_ci
            sql: ''
    grants:
        grant1:
            user: dbuser
            table: '*.*'
            privileges:
                - ALL
postgresql:
    install: '0'
    settings:
        global:
            encoding: UTF8
            version: '9.6'
        server:
            postgres_password: '123'
    databases:
        database1:
            dbname: dbname
            owner: dbuser
    users:
        user1:
            username: dbuser
            password: '123'
            superuser: '1'
    grants:
        grant1:
            role: dbuser
            db: dbname
            privilege:
                - ALL
mongodb:
    install: '0'
    settings:
        bind_ip: 127.0.0.1
        port: '27017'
    globals:
        version: 3.6.2
    databases:
        database1:
            name: dbname
            user: dbuser
            password: '123'
redis:
    install: '0'
    settings:
        port: '6379'
sqlite:
    install: '0'
    databases:
        database1:
            name: dbname
            owner: www-data
            group: www-data
            sql_file: ''
mailhog:
    install: '0'
    settings:
        smtp_ip: 0.0.0.0
        smtp_port: 1025
        http_ip: 0.0.0.0
        http_port: '8025'
        path: /usr/local/bin/mailhog
beanstalkd:
    install: '0'
    settings:
        listenaddress: 0.0.0.0
        listenport: '11300'
        maxjobsize: '65535'
        maxconnections: '1024'
        binlogdir: /var/lib/beanstalkd/binlog
        binlogfsync: null
        binlogsize: '10485760'
    beanstalk_console: 0
rabbitmq:
    install: '0'
    settings:
        port: '5672'
    users:
        user1:
            admin: '1'
            name: admin
            password: '123'
            tags:
                - admin
    vhosts: {  }
    plugins: {  }
elastic_search:
    install: '0'
    settings:
        version: 6.1.2
        java_install: true
    instances:
        instance1:
            name: es-01
            jvm_options:
                - '-Xms2G'
                - '-Xmx2G'

output

C:\inetpub\VMs\test>vagrant up
Bringing machine 'machine1' up with 'virtualbox' provider...
==> machine1: Importing base box 'bento/ubuntu-16.04'...
==> machine1: Matching MAC address for NAT networking...
==> machine1: Checking if box 'bento/ubuntu-16.04' is up to date...
==> machine1: Setting the name of the VM: test_machine1_1545072187393_42137
==> machine1: Fixed port collision for 22 => 2222. Now on port 10200.
==> machine1: Vagrant has detected a configuration issue which exposes a
==> machine1: vulnerability with the installed version of VirtualBox. The
==> machine1: current guest is configured to use an E1000 NIC type for a
==> machine1: network adapter which is vulnerable in this version of VirtualBox.
==> machine1: Ensure the guest is trusted to use this configuration or update
==> machine1: the NIC type using one of the methods below:
==> machine1:
==> machine1:   https://www.vagrantup.com/docs/virtualbox/configuration.html#default-nic-type
==> machine1:   https://www.vagrantup.com/docs/virtualbox/networking.html#virtualbox-nic-type
==> machine1: Clearing any previously set network interfaces...
==> machine1: Preparing network interfaces based on configuration...
    machine1: Adapter 1: nat
    machine1: Adapter 2: hostonly
==> machine1: Forwarding ports...
    machine1: 22 (guest) => 8391 (host) (adapter 1)
    machine1: 22 (guest) => 10200 (host) (adapter 1)
==> machine1: Running 'pre-boot' VM customizations...
==> machine1: Booting VM...
==> machine1: Waiting for machine to boot. This may take a few minutes...
    machine1: SSH address: 127.0.0.1:10200
    machine1: SSH username: vagrant
    machine1: SSH auth method: private key
==> machine1: Machine booted and ready!
==> machine1: Checking for guest additions in VM...
==> machine1: Setting hostname...
==> machine1: Configuring and enabling network interfaces...
==> machine1: Mounting shared folders...
    machine1: /vagrant => C:/inetpub/VMs/test
    machine1: /var/www => C:/inetpub/VMs/test
    machine1: /tmp/vagrant-puppet/modules-d154746fb1d023bdc651eb1992915f2d => C:/inetpub/VMs/test/puphpet/puppet/modules
    machine1: /tmp/vagrant-puppet/modules-27e91915808a3351aab9fa9ba9bb7a88 => C:/inetpub/VMs/test/puphpet/puppet/manifests
    machine1: /tmp/vagrant-puppet/manifests-75f35e3bc7e32744860c4bb229c88812 => C:/inetpub/VMs/test/puphpet/puppet/manifests
==> machine1: Running provisioner: shell...
    machine1: Running: inline script
==> machine1: Running provisioner: shell...
    machine1: Running: C:/Users/TOMDEA~1/AppData/Local/Temp/vagrant-shell20181217-10852-1l4gnq1.sh
    machine1:
    machine1:  ____        ____  _   _ ____      _      generated using
    machine1: |  _ \ _   _|  _ \| | | |  _ \ ___| |_   ___ ___  _ __ ___
    machine1: | |_) | | | | |_) | |_| | |_) / _ \ __| / __/ _ \| '_ ` _ \
    machine1: |  __/| |_| |  __/|  _  |  __/  __/ |_ | (_| (_) | | | | | |
    machine1: |_|    \__,_|_|   |_| |_|_|   \___|\__(_)___\___/|_| |_| |_|
    machine1:
    machine1: Hit:1 http://archive.ubuntu.com/ubuntu xenial InRelease
    machine1: Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [107 kB]
    machine1: Get:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [109 kB]
    machine1: Get:4 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [107 kB]
    machine1: Get:5 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [892 kB]
    machine1: Get:6 http://archive.ubuntu.com/ubuntu xenial-updates/main i386 Packages [790 kB]
    machine1: Get:7 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [715 kB]
    machine1: Get:8 http://archive.ubuntu.com/ubuntu xenial-updates/universe i386 Packages [655 kB]
    machine1: Fetched 3,376 kB in 1s (1,915 kB/s)
    machine1: Reading package lists...
    machine1: Reading package lists...
    machine1: Building dependency tree...
    machine1:
    machine1: Reading state information...
    machine1: curl is already the newest version (7.47.0-1ubuntu2.11).
    machine1: software-properties-common is already the newest version (0.96.20.7).
    machine1: The following additional packages will be installed:
    machine1:   cpp-5 dpkg-dev g++ g++-5 gcc-5 gcc-5-base libalgorithm-diff-perl
    machine1:   libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan2 libatomic1
    machine1:   libcc1-0 libcilkrts5 libgcc-5-dev libgomp1 libitm1 liblsan0 libmpx0
    machine1:   libquadmath0 libstdc++-5-dev libstdc++6 libtsan0 libubsan0
    machine1:   netfilter-persistent python-apt python-pycurl unattended-upgrades
    machine1: Suggested packages:
    machine1:   gcc-5-locales debian-keyring g++-multilib g++-5-multilib gcc-5-doc
    machine1:   libstdc++6-5-dbg gcc-5-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg
    machine1:   libatomic1-dbg libasan2-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg
    machine1:   libcilkrts5-dbg libmpx0-dbg libquadmath0-dbg libstdc++-5-doc python-apt-dbg
    machine1:   python-apt-doc libcurl4-gnutls-dev python-pycurl-dbg python-pycurl-doc
    machine1:   bsd-mailx mail-transport-agent
    machine1: The following NEW packages will be installed:
    machine1:   build-essential dpkg-dev g++ g++-5 git-core iptables-persistent
    machine1:   libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
    machine1:   libstdc++-5-dev netfilter-persistent python-apt python-pycurl
    machine1:   python-software-properties unattended-upgrades
    machine1: The following packages will be upgraded:
    machine1:   cpp-5 gcc-5 gcc-5-base libasan2 libatomic1 libcc1-0 libcilkrts5 libgcc-5-dev
    machine1:   libgomp1 libitm1 liblsan0 libmpx0 libquadmath0 libstdc++6 libtsan0 libubsan0
    machine1: 16 upgraded, 15 newly installed, 0 to remove and 0 not upgraded.
    machine1: Need to get 30.4 MB of archives.
    machine1: After this operation, 42.3 MB of additional disk space will be used.
    machine1: Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcc1-0 amd64 5.4.0-6ubuntu1~16.04.11 [38.8 kB]
    machine1: Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgomp1 amd64 5.4.0-6ubuntu1~16.04.11 [55.0 kB]
    machine1: Get:3 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libitm1 amd64 5.4.0-6ubuntu1~16.04.11 [27.4 kB]
    machine1: Get:4 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libatomic1 amd64 5.4.0-6ubuntu1~16.04.11 [8,896 B]
    machine1: Get:5 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libasan2 amd64 5.4.0-6ubuntu1~16.04.11 [264 kB]
    machine1: Get:6 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 liblsan0 amd64 5.4.0-6ubuntu1~16.04.11 [105 kB]
    machine1: Get:7 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libtsan0 amd64 5.4.0-6ubuntu1~16.04.11 [244 kB]
    machine1: Get:8 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libubsan0 amd64 5.4.0-6ubuntu1~16.04.11 [95.4 kB]
    machine1: Get:9 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcilkrts5 amd64 5.4.0-6ubuntu1~16.04.11 [40.1 kB]
    machine1: Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmpx0 amd64 5.4.0-6ubuntu1~16.04.11 [9,748 B]
    machine1: Get:11 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libquadmath0 amd64 5.4.0-6ubuntu1~16.04.11 [131 kB]
    machine1: Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgcc-5-dev amd64 5.4.0-6ubuntu1~16.04.11 [2,229 kB]
    machine1: Get:13 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 gcc-5 amd64 5.4.0-6ubuntu1~16.04.11 [8,417 kB]
    machine1: Get:14 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 cpp-5 amd64 5.4.0-6ubuntu1~16.04.11 [7,660 kB]
    machine1: Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 gcc-5-base amd64 5.4.0-6ubuntu1~16.04.11 [17.3 kB]
    machine1: Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libstdc++6 amd64 5.4.0-6ubuntu1~16.04.11 [393 kB]
    machine1: Get:17 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libstdc++-5-dev amd64 5.4.0-6ubuntu1~16.04.11 [1,426 kB]
    machine1: Get:18 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 g++-5 amd64 5.4.0-6ubuntu1~16.04.11 [8,310 kB]
    machine1: Get:19 http://archive.ubuntu.com/ubuntu xenial/main amd64 g++ amd64 4:5.3.1-1ubuntu1 [1,504 B]
    machine1: Get:20 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 dpkg-dev all 1.18.4ubuntu1.5 [584 kB]
    machine1: Get:21 http://archive.ubuntu.com/ubuntu xenial/main amd64 build-essential amd64 12.1ubuntu2 [4,758 B]
    machine1: Get:22 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 git-core all 1:2.7.4-0ubuntu1.6 [1,466 B]
    machine1: Get:23 http://archive.ubuntu.com/ubuntu xenial/universe amd64 netfilter-persistent all 1.0.4 [6,786 B]
    machine1: Get:24 http://archive.ubuntu.com/ubuntu xenial/universe amd64 iptables-persistent all 1.0.4 [6,540 B]
    machine1: Get:25 http://archive.ubuntu.com/ubuntu xenial/main amd64 libalgorithm-diff-perl all 1.19.03-1 [47.6 kB]
    machine1: Get:26 http://archive.ubuntu.com/ubuntu xenial/main amd64 libalgorithm-diff-xs-perl amd64 0.04-4build1 [11.0 kB]
    machine1: Get:27 http://archive.ubuntu.com/ubuntu xenial/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
    machine1: Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-apt amd64 1.1.0~beta1ubuntu0.16.04.2 [139 kB]
    machine1: Get:29 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-pycurl amd64 7.43.0-1ubuntu1 [43.3 kB]
    machine1: Get:30 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 python-software-properties all 0.96.20.7 [20.7 kB]
    machine1: Get:31 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 unattended-upgrades all 0.90ubuntu0.9 [32.3 kB]
Extracting templates from packages: 96%
Extracting templates from packages: 100%
    machine1: Preconfiguring packages ...
    machine1: Fetched 30.4 MB in 13s (2,259 kB/s)
    machine1: (Reading database ...
(Reading database ... 20%tabase ... 5%
(Reading database ... 50%tabase ... 25%
    machine1: (Reading database ... 55%
(Reading database ... 65%tabase ... 60%
    machine1: (Reading database ... 70%
    machine1: (Reading database ... 75%
    machine1: (Reading database ... 80%
    machine1: (Reading database ... 85%
    machine1: (Reading database ... 90%
    machine1: (Reading database ... 95%
(Reading database ... 38412 files and directories currently installed.)
    machine1: Preparing to unpack .../libcc1-0_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libcc1-0:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../libgomp1_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libgomp1:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../libitm1_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libitm1:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../libatomic1_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libatomic1:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../libasan2_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libasan2:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../liblsan0_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking liblsan0:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../libtsan0_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libtsan0:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../libubsan0_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libubsan0:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../libcilkrts5_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libcilkrts5:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../libmpx0_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libmpx0:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../libquadmath0_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libquadmath0:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../libgcc-5-dev_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libgcc-5-dev:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../gcc-5_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking gcc-5 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../cpp-5_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking cpp-5 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Preparing to unpack .../gcc-5-base_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking gcc-5-base:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Processing triggers for libc-bin (2.23-0ubuntu10) ...
    machine1: Processing triggers for man-db (2.7.5-1) ...
    machine1: Setting up gcc-5-base:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: (Reading database ...
    machine1: (Reading database ... 5%
    machine1: (Reading database ... 10%
    machine1: (Reading database ... 15%
    machine1: (Reading database ... 20%
    machine1: (Reading database ... 25%
    machine1: (Reading database ... 30%
    machine1: (Reading database ... 35%
    machine1: (Reading database ... 40%
    machine1: (Reading database ... 45%
    machine1: (Reading database ... 50%
    machine1: (Reading database ... 55%
    machine1: (Reading database ... 60%
    machine1: (Reading database ... 65%
    machine1: (Reading database ... 70%
    machine1: (Reading database ... 75%
    machine1: (Reading database ... 80%
    machine1: (Reading database ... 85%
    machine1: (Reading database ... 90%
    machine1: (Reading database ... 95%
    machine1: (Reading database ... 100%
    machine1: (Reading database ...
    machine1: 38412 files and directories currently installed.)
    machine1: Preparing to unpack .../libstdc++6_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libstdc++6:amd64 (5.4.0-6ubuntu1~16.04.11) over (5.4.0-6ubuntu1~16.04.10) ...
    machine1: Processing triggers for libc-bin (2.23-0ubuntu10) ...
    machine1: Setting up libstdc++6:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Processing triggers for libc-bin (2.23-0ubuntu10) ...
    machine1: Selecting previously unselected package libstdc++-5-dev:amd64.
    machine1: (Reading database ...
    machine1: (Reading database ... 5%
    machine1: (Reading database ... 10%
    machine1: (Reading database ... 15%
    machine1: (Reading database ... 20%
    machine1: (Reading database ... 25%
    machine1: (Reading database ... 30%
    machine1: (Reading database ... 35%
    machine1: (Reading database ... 40%
    machine1: (Reading database ... 45%
    machine1: (Reading database ... 50%
    machine1: (Reading database ... 55%
    machine1: (Reading database ... 60%
    machine1: (Reading database ... 65%
    machine1: (Reading database ... 70%
    machine1: (Reading database ... 75%
    machine1: (Reading database ... 80%
    machine1: (Reading database ... 85%
    machine1: (Reading database ... 90%
    machine1: (Reading database ... 95%
    machine1: (Reading database ... 100%
    machine1: (Reading database ...
    machine1: 38412 files and directories currently installed.)
    machine1: Preparing to unpack .../libstdc++-5-dev_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking libstdc++-5-dev:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Selecting previously unselected package g++-5.
    machine1: Preparing to unpack .../g++-5_5.4.0-6ubuntu1~16.04.11_amd64.deb ...
    machine1: Unpacking g++-5 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Selecting previously unselected package g++.
    machine1: Preparing to unpack .../g++_4%3a5.3.1-1ubuntu1_amd64.deb ...
    machine1: Unpacking g++ (4:5.3.1-1ubuntu1) ...
    machine1: Selecting previously unselected package dpkg-dev.
    machine1: Preparing to unpack .../dpkg-dev_1.18.4ubuntu1.5_all.deb ...
    machine1: Unpacking dpkg-dev (1.18.4ubuntu1.5) ...
    machine1: Selecting previously unselected package build-essential.
    machine1: Preparing to unpack .../build-essential_12.1ubuntu2_amd64.deb ...
    machine1: Unpacking build-essential (12.1ubuntu2) ...
    machine1: Selecting previously unselected package git-core.
    machine1: Preparing to unpack .../git-core_1%3a2.7.4-0ubuntu1.6_all.deb ...
    machine1: Unpacking git-core (1:2.7.4-0ubuntu1.6) ...
    machine1: Selecting previously unselected package netfilter-persistent.
    machine1: Preparing to unpack .../netfilter-persistent_1.0.4_all.deb ...
    machine1: Unpacking netfilter-persistent (1.0.4) ...
    machine1: Selecting previously unselected package iptables-persistent.
    machine1: Preparing to unpack .../iptables-persistent_1.0.4_all.deb ...
    machine1: Unpacking iptables-persistent (1.0.4) ...
    machine1: Selecting previously unselected package libalgorithm-diff-perl.
    machine1: Preparing to unpack .../libalgorithm-diff-perl_1.19.03-1_all.deb ...
    machine1: Unpacking libalgorithm-diff-perl (1.19.03-1) ...
    machine1: Selecting previously unselected package libalgorithm-diff-xs-perl.
    machine1: Preparing to unpack .../libalgorithm-diff-xs-perl_0.04-4build1_amd64.deb ...
    machine1: Unpacking libalgorithm-diff-xs-perl (0.04-4build1) ...
    machine1: Selecting previously unselected package libalgorithm-merge-perl.
    machine1: Preparing to unpack .../libalgorithm-merge-perl_0.08-3_all.deb ...
    machine1: Unpacking libalgorithm-merge-perl (0.08-3) ...
    machine1: Selecting previously unselected package python-apt.
    machine1: Preparing to unpack .../python-apt_1.1.0~beta1ubuntu0.16.04.2_amd64.deb ...
    machine1: Unpacking python-apt (1.1.0~beta1ubuntu0.16.04.2) ...
    machine1: Selecting previously unselected package python-pycurl.
    machine1: Preparing to unpack .../python-pycurl_7.43.0-1ubuntu1_amd64.deb ...
    machine1: Unpacking python-pycurl (7.43.0-1ubuntu1) ...
    machine1: Selecting previously unselected package python-software-properties.
    machine1: Preparing to unpack .../python-software-properties_0.96.20.7_all.deb ...
    machine1: Unpacking python-software-properties (0.96.20.7) ...
    machine1: Selecting previously unselected package unattended-upgrades.
    machine1: Preparing to unpack .../unattended-upgrades_0.90ubuntu0.9_all.deb ...
    machine1: Unpacking unattended-upgrades (0.90ubuntu0.9) ...
    machine1: Processing triggers for man-db (2.7.5-1) ...
    machine1: Processing triggers for systemd (229-4ubuntu21.10) ...
    machine1: Processing triggers for ureadahead (0.100.0-19) ...
    machine1: Setting up libcc1-0:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up libgomp1:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up libitm1:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up libatomic1:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up libasan2:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up liblsan0:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up libtsan0:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up libubsan0:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up libcilkrts5:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up libmpx0:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up libquadmath0:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up libgcc-5-dev:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up cpp-5 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up gcc-5 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up libstdc++-5-dev:amd64 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up g++-5 (5.4.0-6ubuntu1~16.04.11) ...
    machine1: Setting up g++ (4:5.3.1-1ubuntu1) ...
    machine1: update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
    machine1: Setting up dpkg-dev (1.18.4ubuntu1.5) ...
    machine1: Setting up build-essential (12.1ubuntu2) ...
    machine1: Setting up git-core (1:2.7.4-0ubuntu1.6) ...
    machine1: Setting up netfilter-persistent (1.0.4) ...
    machine1: update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
    machine1: Setting up iptables-persistent (1.0.4) ...
    machine1: Setting up libalgorithm-diff-perl (1.19.03-1) ...
    machine1: Setting up libalgorithm-diff-xs-perl (0.04-4build1) ...
    machine1: Setting up libalgorithm-merge-perl (0.08-3) ...
    machine1: Setting up python-apt (1.1.0~beta1ubuntu0.16.04.2) ...
    machine1: Setting up python-pycurl (7.43.0-1ubuntu1) ...
    machine1: Setting up python-software-properties (0.96.20.7) ...
    machine1: Setting up unattended-upgrades (0.90ubuntu0.9) ...
    machine1: Creating config file /etc/apt/apt.conf.d/20auto-upgrades with new version
    machine1: Creating config file /etc/apt/apt.conf.d/50unattended-upgrades with new version
    machine1: Synchronizing state of unattended-upgrades.service with SysV init with /lib/systemd/systemd-sysv-install...
    machine1: Executing /lib/systemd/systemd-sysv-install enable unattended-upgrades
    machine1: Processing triggers for libc-bin (2.23-0ubuntu10) ...
    machine1: Processing triggers for systemd (229-4ubuntu21.10) ...
    machine1: Processing triggers for ureadahead (0.100.0-19) ...
==> machine1: Running provisioner: shell...
    machine1: Running: inline script
==> machine1: Running provisioner: shell...
    machine1: Running: C:/Users/TOMDEA~1/AppData/Local/Temp/vagrant-shell20181217-10852-1gifn0c.sh
    machine1: Hit:1 http://archive.ubuntu.com/ubuntu xenial InRelease
    machine1: Hit:2 http://archive.ubuntu.com/ubuntu xenial-updates InRelease
    machine1: Hit:3 http://archive.ubuntu.com/ubuntu xenial-backports InRelease
    machine1: Hit:4 http://security.ubuntu.com/ubuntu xenial-security InRelease
    machine1: Reading package lists...
    machine1: Reading package lists...
    machine1: Building dependency tree...
    machine1:
    machine1: Reading state information...
    machine1: Suggested packages:
    machine1:   putty-doc
    machine1: The following NEW packages will be installed:
    machine1:   putty-tools
    machine1: 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
    machine1: Need to get 342 kB of archives.
    machine1: After this operation, 1,744 kB of additional disk space will be used.
    machine1: Get:1 http://archive.ubuntu.com/ubuntu xenial/universe amd64 putty-tools amd64 0.67-2 [342 kB]
    machine1: Fetched 342 kB in 0s (1,558 kB/s)
    machine1: Selecting previously unselected package putty-tools.
    machine1: (Reading database ...
    machine1: (Reading database ... 5%
(Reading database ... 20%tabase ... 10%
    machine1: (Reading database ... 25%
(Reading database ... 40%tabase ... 30%
(Reading database ... 65%tabase ... 45%
    machine1: (Reading database ... 70%
    machine1: (Reading database ... 75%
    machine1: (Reading database ... 80%
    machine1: (Reading database ... 85%
    machine1: (Reading database ... 90%
    machine1: (Reading database ... 95%
(Reading database ...  database ... 100%
    machine1: 39541 files and directories currently installed.)
    machine1: Preparing to unpack .../putty-tools_0.67-2_amd64.deb ...
    machine1: Unpacking putty-tools (0.67-2) ...
    machine1: Processing triggers for man-db (2.7.5-1) ...
    machine1: Setting up putty-tools (0.67-2) ...
    machine1: Generating public/private rsa key pair.
    machine1: Your identification has been saved in /opt/puphpet/files/dot/ssh/root_id_rsa.
    machine1: Your public key has been saved in /opt/puphpet/files/dot/ssh/root_id_rsa.pub.
    machine1: The key fingerprint is:
    machine1: SHA256:woRRnRZeACJd/YAfg+nF6wwz7Y2F5zgALQlZmoAtU+g root@machine1
    machine1: The key's randomart image is:
    machine1: +---[RSA 2048]----+
    machine1: |o++=+=+Oo+.      |
    machine1: |=.o+=+=.@.       |
    machine1: |.oo .+.=.B       |
    machine1: | E   o* = +      |
    machine1: |      oOSB       |
    machine1: |       .B o      |
    machine1: |         .       |
    machine1: |                 |
    machine1: |                 |
    machine1: +----[SHA256]-----+
    machine1: Your private key for SSH-based authentication has been saved to 'puphpet/files/dot/ssh/root_id_rsa'!
    machine1: Generating public/private rsa key pair.
    machine1: Your identification has been saved in /opt/puphpet/files/dot/ssh/id_rsa.
    machine1: Your public key has been saved in /opt/puphpet/files/dot/ssh/id_rsa.pub.
    machine1: The key fingerprint is:
    machine1: SHA256:dpOqfwvDhaK2nyuG1SBW0n8mh9yQniVadeR2uZwZvj4 root@machine1
    machine1: The key's randomart image is:
    machine1: +---[RSA 2048]----+
    machine1: |   .   o..o      |
    machine1: |  . o = .o   .   |
    machine1: |   o * B  o +    |
    machine1: |  o o B =o = =   |
    machine1: | . . o.=S = *    |
    machine1: |    ...+ + . .   |
    machine1: |   oo   =   .    |
    machine1: |  ..o. o o..E    |
    machine1: |   ..o=o......   |
    machine1: +----[SHA256]-----+
    machine1: Your private key for SSH-based authentication has been saved to 'puphpet/files/dot/ssh/id_rsa'!
    machine1: Adding generated root key to /root/.ssh/id_rsa
    machine1: Adding generated root key to /root/.ssh/id_rsa.pub
    machine1: Adding generated root key to /root/.ssh/authorized_keys
    machine1: Adding generated key to /home/vagrant/.ssh/id_rsa
    machine1: Adding generated key to /home/vagrant/.ssh/id_rsa.pub
    machine1: Adding generated key to /home/vagrant/.ssh/authorized_keys
==> machine1: Running provisioner: shell...
    machine1: Running: C:/Users/TOMDEA~1/AppData/Local/Temp/vagrant-shell20181217-10852-14pwhra.sh
    machine1: OK
    machine1: Selecting previously unselected package puppet5-release.
    machine1: (Reading database ... 39554 files and directories currently installed.)
    machine1: Preparing to unpack .../puppet5-release-xenial.deb ...
    machine1: Unpacking puppet5-release (5.0.0-1xenial) ...
    machine1: Setting up puppet5-release (5.0.0-1xenial) ...
    machine1: Ign:1 http://apt.puppetlabs.com xenial InRelease
    machine1: Get:2 http://apt.puppetlabs.com xenial Release [70.0 kB]
    machine1: Hit:3 http://archive.ubuntu.com/ubuntu xenial InRelease
    machine1: Hit:4 http://archive.ubuntu.com/ubuntu xenial-updates InRelease
    machine1: Hit:5 http://security.ubuntu.com/ubuntu xenial-security InRelease
    machine1: Hit:6 http://archive.ubuntu.com/ubuntu xenial-backports InRelease
    machine1: Get:7 http://apt.puppetlabs.com xenial Release.gpg [819 B]
    machine1: Get:8 http://apt.puppetlabs.com xenial/puppet5 amd64 Packages [27.4 kB]
    machine1: Get:9 http://apt.puppetlabs.com xenial/puppet5 i386 Packages [24.3 kB]
    machine1: Get:10 http://apt.puppetlabs.com xenial/puppet5 all Packages [10.4 kB]
    machine1: Fetched 133 kB in 0s (150 kB/s)
    machine1: Reading package lists...
    machine1: Reading package lists...
    machine1: Building dependency tree...
    machine1:
    machine1: Reading state information...
    machine1: The following NEW packages will be installed:
    machine1:   puppet-agent
    machine1: 0 upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
    machine1: Need to get 16.3 MB of archives.
    machine1: After this operation, 91.7 MB of additional disk space will be used.
    machine1: Get:1 http://apt.puppetlabs.com xenial/puppet5 amd64 puppet-agent amd64 5.3.8-1xenial [16.3 MB]
    machine1: Fetched 16.3 MB in 1s (8,263 kB/s)
    machine1: Selecting previously unselected package puppet-agent.
    machine1: (Reading database ...
(Reading database ... 10%tabase ... 5%
    machine1: (Reading database ... 15%
(Reading database ... 30%tabase ... 20%
(Reading database ... 50%tabase ... 35%
(Reading database ... 60%tabase ... 55%
    machine1: (Reading database ... 65%
    machine1: (Reading database ... 70%
    machine1: (Reading database ... 75%
    machine1: (Reading database ... 80%
    machine1: (Reading database ... 85%
    machine1: (Reading database ... 90%
    machine1: (Reading database ... 95%
(Reading database ... 39559 files and directories currently installed.)
    machine1: Preparing to unpack .../puppet-agent_5.3.8-1xenial_amd64.deb ...
    machine1: Unpacking puppet-agent (5.3.8-1xenial) ...
    machine1: Processing triggers for libc-bin (2.23-0ubuntu10) ...
    machine1: Setting up puppet-agent (5.3.8-1xenial) ...
    machine1: Created symlink from /etc/systemd/system/multi-user.target.wants/puppet.service to /lib/systemd/system/puppet.service.
    machine1: Created symlink from /etc/systemd/system/multi-user.target.wants/mcollective.service to /lib/systemd/system/mcollective.service.
    machine1: Created symlink from /etc/systemd/system/multi-user.target.wants/pxp-agent.service to /lib/systemd/system/pxp-agent.service.
    machine1: Removed symlink /etc/systemd/system/multi-user.target.wants/pxp-agent.service.
    machine1: Processing triggers for libc-bin (2.23-0ubuntu10) ...
    machine1: Successfully installed concurrent-ruby-1.1.4
    machine1: Successfully installed i18n-0.9.5
    machine1: Successfully installed thread_safe-0.3.6
    machine1: Successfully installed tzinfo-1.2.5
    machine1: Successfully installed activesupport-5.1.4
    machine1: 5 gems installed
    machine1: Successfully installed vine-0.4
    machine1: 1 gem installed
==> machine1: Running provisioner: shell...
    machine1: Running: C:/Users/TOMDEA~1/AppData/Local/Temp/vagrant-shell20181217-10852-13u2gwl.sh
    machine1: Running files in files/exec-preprovision
    machine1: Created file /opt/puphpet-state/exec-preprovision-ran
    machine1: Finished running files in files/exec-preprovision
    machine1: To run again, delete hashes you want rerun in /opt/puphpet-state/exec-preprovision-ran or the whole file to rerun all
==> machine1: Running provisioner: puppet...
==> machine1: Running Puppet with ...
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Info: Loading facts
==> machine1: Warning: The function 'hiera' is deprecated in favor of using 'lookup'. See https://docs.puppet.com/puppet/5.3/reference/deprecated_language.html\n   (file & line not available)
==> machine1: Notice: Compiled catalog for machine1.puphpet in environment production in 10.64 seconds
==> machine1: Info: Applying configuration version '1545072331'
==> machine1: Notice: /Stage[main]/Timezone/Debconf[tzdata/Areas]/ensure: created
==> machine1: Notice: /Stage[main]/Timezone/Debconf[tzdata/Zones/UTC]/ensure: created
==> machine1: Info: Computing checksum on file /etc/timezone
==> machine1: Info: /Stage[main]/Timezone/File[/etc/timezone]: Filebucketed /etc/timezone to puppet with sum 4f24b133ba38d8fd565168742c9aedeb
==> machine1: Notice: /Stage[main]/Timezone/File[/etc/timezone]/content: content changed '{md5}4f24b133ba38d8fd565168742c9aedeb' to '{md5}ae1d80ba85332ae2d9fbbd491b17c043'
==> machine1: Info: /Stage[main]/Timezone/File[/etc/timezone]: Scheduling refresh of Exec[update_timezone]
==> machine1: Notice: /Stage[main]/Timezone/Exec[update_timezone]: Triggered 'refresh' from 1 event
==> machine1: Notice: /Stage[main]/Resolv_conf/File[/etc/resolv.conf]/ensure: defined content as '{md5}4404ec98cdeb70d13a93183885bf2b54'
==> machine1: Notice: /Stage[main]/Rvm::Group/Group[rvm]/ensure: created
==> machine1: Notice: /Stage[main]/Rvm::Rvmrc/File[/etc/rvmrc]/ensure: defined content as '{md5}3ec590d219afbf91a7c1a149a15e72cb'
==> machine1: Notice: /Stage[main]/Puphpet::Server/Group[puppet]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Server/Group[www-user]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Server/User[vagrant]/groups: groups changed adm,cdrom,sudo,dip,plugdev,lxd,lpadmin,sambashare to ['adm', 'cdrom', 'dip', 'lpadmin', 'lxd', 'plugdev', 'rvm', 'sambashare', 'sudo', 'www-data', 'www-user']
==> machine1: Notice: /Stage[main]/Puphpet::Server/User[apache]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Server/User[nginx]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Server/User[httpd]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Server/User[www-data]/shell: shell changed '/usr/sbin/nologin' to '/bin/bash'
==> machine1: Notice: /Stage[main]/Puphpet::Server/User[www-data]/groups: groups changed  to ['www-data']
==> machine1: Notice: /Stage[main]/Puphpet::Server/User[www-user]/ensure: created
==> machine1: Notice: /Stage[main]/Apt/File[preferences]/ensure: created
==> machine1: Info: /Stage[main]/Apt/File[preferences]: Scheduling refresh of Class[Apt::Update]
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Server/File[/var/lib/mysql]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Install/User[mysql]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Server/Exec[Create pidfile parent directory]/returns: executed successfully
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Server/Exec[Set pidfile parent directory permissions]/returns: executed successfully
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Server/Exec[Create mariadb tmpfiles.d conf file]/returns: executed successfully
==> machine1: Notice: /Stage[main]/Mysql::Server::Config/File[/etc/mysql]/ensure: created
==> machine1: Notice: /Stage[main]/Mysql::Server::Config/File[/etc/mysql/conf.d]/ensure: created
==> machine1: Notice: /Stage[main]/Mysql::Server::Config/File[mysql-config-file]/ensure: defined content as '{md5}44e7aa974ab98260d7d013a2087f1c77'
==> machine1: Info: Class[Mysql::Server::Config]: Scheduling refresh of Class[Mysql::Server::Service]
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/File[/var/www]/owner: owner changed 'vagrant' to 'root'
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/File[/var/www]/group: group changed 'vagrant' to 'www-data'
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Exec[mkdir -p /var/lib/php/session]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Install/Exec[mkdir -p /var/lib/php/session]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/File[/var/lib/php/session]/owner: owner changed 'root' to 'www-data'
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/File[/var/lib/php/session]/group: group changed 'root' to 'www-data'
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/File[/var/lib/php/session]/mode: mode changed '0755' to '0775'
==> machine1: Notice: /Stage[main]/Puphpet::Server/Puphpet::Server::Link_dotfiles[vagrant]/Exec[dotfiles for vagrant]/returns: executed successfully
==> machine1: Info: Computing checksum on file /etc/apt/apt.conf.d/15update-stamp
==> machine1: Info: /Stage[main]/Apt/Apt::Setting[conf-update-stamp]/File[/etc/apt/apt.conf.d/15update-stamp]: Filebucketed /etc/apt/apt.conf.d/15update-stamp to puppet with sum b9de0ac9e2c9854b1bb213e362dc4e41
==> machine1: Notice: /Stage[main]/Apt/Apt::Setting[conf-update-stamp]/File[/etc/apt/apt.conf.d/15update-stamp]/content: content changed '{md5}b9de0ac9e2c9854b1bb213e362dc4e41' to '{md5}0962d70c4ec78bbfa6f3544ae0c41974'
==> machine1: Info: /Stage[main]/Apt/Apt::Setting[conf-update-stamp]/File[/etc/apt/apt.conf.d/15update-stamp]: Scheduling refresh of Class[Apt::Update]
==> machine1: Notice: /Stage[main]/Puphpet::Server/Apt::Key[14AA40EC0831756756D7F66C4F4EA0AAE5267A6C]/Apt_key[14AA40EC0831756756D7F66C4F4EA0AAE5267A6C]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Server/Apt::Key[945A6177078449082DDCC0E5551CE2FB4CBEDD5A]/Apt_key[945A6177078449082DDCC0E5551CE2FB4CBEDD5A]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Server/Apt::Ppa[ppa:pdoes/ppa]/Exec[add-apt-repository-ppa:pdoes/ppa]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Server/Apt::Ppa[ppa:pdoes/ppa]/Exec[add-apt-repository-ppa:pdoes/ppa]: Scheduling refresh of Class[Apt::Update]
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Repo::Debian/Apt::Key[199369E5404BD5FC7D2FE43BCBCB082A1BB943DB]/Apt_key[199369E5404BD5FC7D2FE43BCBCB082A1BB943DB]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Exec[exec mkdir -p /var/www/awesome @ key vhost1]/returns: executed successfully
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Exec[exec mkdir -p /var/www/html @ key _]/returns: executed successfully
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Exec[Set /var/www/html/index.html contents]/returns: executed successfully
==> machine1: Notice: /Stage[main]/Puphpet::Php::Repo::Debian/Apt::Ppa[ppa:ondrej/php]/Exec[add-apt-repository-ppa:ondrej/php]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Repo::Debian/Apt::Ppa[ppa:ondrej/php]/Exec[add-apt-repository-ppa:ondrej/php]: Scheduling refresh of Class[Apt::Update]
==> machine1: Notice: /Stage[main]/Puphpet::Python::Pip/Puphpet::Server::Wget[/opt/puphpet-state/ez_setup.py]/Exec[download https://bootstrap.pypa.io/ez_setup.py]/returns: executed successfully
==> machine1: Notice: /Stage[main]/Puphpet::Python::Pip/Exec[Install ez_setup]/returns: executed successfully
==> machine1: Notice: /Stage[main]/Puphpet::Python::Pip/Exec[easy_install pip]/returns: executed successfully
==> machine1: Notice: /Stage[main]/Puphpet::Letsencrypt::Certbot/Puphpet::Server::Wget[/usr/bin/certbot-auto]/Exec[download https://dl.eff.org/certbot-auto]/returns: executed successfully
==> machine1: Notice: /Stage[main]/Puphpet::Letsencrypt::Certbot/Puphpet::Server::Wget[/usr/bin/certbot-auto]/File[/usr/bin/certbot-auto]/mode: mode changed '0644' to '0755' (a+x)
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Repo::Debian/Apt::Source[mariadb]/Apt::Key[Add key: 177F4010FE56CA3336300305F1656F24C74CD1D8 from Apt::Source mariadb]/Apt_key[Add key: 177F4010FE56CA3336300305F1656F24C74CD1D8 from Apt::Source mariadb]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Repo::Debian/Apt::Source[mariadb]/Apt::Setting[list-mariadb]/File[/etc/apt/sources.list.d/mariadb.list]/ensure: defined content as '{md5}2bebe0e45053c1ca1de384a66cf5d61a'
==> machine1: Info: /Stage[main]/Puphpet::Mariadb::Repo::Debian/Apt::Source[mariadb]/Apt::Setting[list-mariadb]/File[/etc/apt/sources.list.d/mariadb.list]: Scheduling refresh of Class[Apt::Update]
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Repo::Debian/Apt::Pin[mariadb]/Apt::Setting[pref-mariadb]/File[/etc/apt/preferences.d/mariadb.pref]/ensure: defined content as '{md5}0288d449b8bb2bf21a12aa83e5be4610'
==> machine1: Notice: /Stage[main]/Nginx::Package::Debian/Apt::Source[nginx]/Apt::Key[Add key: 573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62 from Apt::Source nginx]/Apt_key[Add key: 573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62 from Apt::Source nginx]/ensure: created
==> machine1: Notice: /Stage[main]/Nginx::Package::Debian/Apt::Source[nginx]/Apt::Setting[list-nginx]/File[/etc/apt/sources.list.d/nginx.list]/ensure: defined content as '{md5}2a727edbe5242f6e372381df842425ff'
==> machine1: Info: /Stage[main]/Nginx::Package::Debian/Apt::Source[nginx]/Apt::Setting[list-nginx]/File[/etc/apt/sources.list.d/nginx.list]: Scheduling refresh of Class[Apt::Update]
==> machine1: Info: Class[Apt::Update]: Scheduling refresh of Exec[apt_update]
==> machine1: Notice: /Stage[main]/Apt::Update/Exec[apt_update]: Triggered 'refresh' from 1 event
==> machine1: Notice: /Stage[main]/Puphpet::Firewall::Pre/Firewall[000 accept all icmp]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Firewall::Pre/Firewall[001 accept all to lo interface]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Firewall::Pre/Firewall[002 reject local traffic not on loopback interface]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Firewall::Pre/Firewall[003 accept related established rules]/ensure: created
==> machine1: Info: Computing checksum on file /etc/locale.gen
==> machine1: Info: /Stage[main]/Locales/File[/etc/locale.gen]: Filebucketed /etc/locale.gen to puppet with sum d3d691f61256836ce3a68b0e5f06a537
==> machine1: Notice: /Stage[main]/Locales/File[/etc/locale.gen]/content: content changed '{md5}d3d691f61256836ce3a68b0e5f06a537' to '{md5}858abb12cbfa657ec2cbdc4eddb0f7c1'
==> machine1: Info: /Stage[main]/Locales/File[/etc/locale.gen]: Scheduling refresh of Exec[locale-gen]
==> machine1: Notice: /Stage[main]/Locales/Exec[locale-gen]: Triggered 'refresh' from 1 event
==> machine1: Info: Computing checksum on file /etc/default/locale
==> machine1: Info: /Stage[main]/Locales/File[/etc/default/locale]: Filebucketed /etc/default/locale to puppet with sum e3ec7de47358ed0813e0e61ff69b3cfe
==> machine1: Notice: /Stage[main]/Locales/File[/etc/default/locale]/content: content changed '{md5}e3ec7de47358ed0813e0e61ff69b3cfe' to '{md5}987229bae076573de7ee3e5608ff9b35'
==> machine1: Info: /Stage[main]/Locales/File[/etc/default/locale]: Scheduling refresh of Exec[update-locale]
==> machine1: Notice: /Stage[main]/Locales/Exec[update-locale]: Triggered 'refresh' from 1 event
==> machine1: Notice: /Stage[main]/Resolv_conf/Package[resolvconf]/ensure: removed
==> machine1: Notice: /Stage[main]/Puphpet::Ruby/Gnupg_key[rvm_D39DC0E3]/ensure: created
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns: Downloading https://github.com/rvm/rvm/archive/1.29.6.tar.gz
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns: Downloading https://github.com/rvm/rvm/releases/download/1.29.6/1.29.6.tar.gz.asc
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns: gpg: Signature made Thu 13 Dec 2018 03:09:53 PM UTC using RSA key ID 39499BDB
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns: gpg: Can't check signature: public key not found
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns: Warning, RVM 1.26.0 introduces signed releases and automated check of signatures when GPG software found. Assuming you trust Michal Papis import the mpapis public key (downloading the signatures).
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns: GPG signature verification failed for '/usr/local/rvm/archives/rvm-1.29.6.tgz' - 'https://github.com/rvm/rvm/releases/download/1.29.6/1.29.6.tar.gz.asc'! Try to install GPG v2 and then fetch the public key:
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:     sudo gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns: or if it fails:
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:     command curl -sSL https://rvm.io/mpapis.asc | sudo gpg --import -
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:     command curl -sSL https://rvm.io/pkuczynski.asc | sudo gpg --import -
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns: the key can be compared with:
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:     https://rvm.io/mpapis.asc or https://keybase.io/mpapis
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:     https://rvm.io/pkuczynski.asc
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns:
==> machine1: Notice: /Stage[main]/Rvm::System/Exec[system-rvm]/returns: NOTE: GPG version 2.1.17 have a bug which cause failures during fetching keys from remote server. Please downgrade or upgrade to newer version (if available) or use the second method described above.
==> machine1: Error: 'curl -fsSL https://get.rvm.io | bash -s -- --version latest' returned 2 instead of one of [0]
==> machine1: Error: /Stage[main]/Rvm::System/Exec[system-rvm]/returns: change from 'notrun' to ['0'] failed: 'curl -fsSL https://get.rvm.io | bash -s -- --version latest' returned 2 instead of one of [0]
==> machine1: Notice: /Stage[main]/Puphpet::Ruby/Exec[rvm rvmrc warning ignore all.rvmrcs]: Dependency Exec[system-rvm] has failures: true
==> machine1: Warning: /Stage[main]/Puphpet::Ruby/Exec[rvm rvmrc warning ignore all.rvmrcs]: Skipping because of failed dependencies
==> machine1: Notice: /Stage[main]/Ntp::Install/Package[ntp]/ensure: created
==> machine1: Info: Computing checksum on file /etc/ntp.conf
==> machine1: Info: /Stage[main]/Ntp::Config/File[/etc/ntp.conf]: Filebucketed /etc/ntp.conf to puppet with sum cf6cfc355b6c31fed23af938b4396c46
==> machine1: Notice: /Stage[main]/Ntp::Config/File[/etc/ntp.conf]/content: content changed '{md5}cf6cfc355b6c31fed23af938b4396c46' to '{md5}9cf8aadbbc1575578233d1d8bfd7511f'
==> machine1: Info: Class[Ntp::Config]: Scheduling refresh of Class[Ntp::Service]
==> machine1: Info: Class[Ntp::Service]: Scheduling refresh of Service[ntp]
==> machine1: Notice: /Stage[main]/Ntp::Service/Service[ntp]: Triggered 'refresh' from 1 event
==> machine1: Notice: /Stage[main]/Puphpet::Server/Package[augeas-tools]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Server/Package[bash-completion]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Server/Package[htop]/ensure: created
==> machine1: Notice: /Stage[main]/Mysql::Server::Install/Package[mysql-server]/ensure: created
==> machine1: Info: Class[Mysql::Server::Service]: Scheduling refresh of Service[mysqld]
==> machine1: Info: Class[Mysql::Server::Service]: Scheduling refresh of Exec[wait_for_mysql_socket_to_open]
==> machine1: Notice: /Stage[main]/Mysql::Server::Service/Service[mysqld]/ensure: ensure changed 'stopped' to 'running'
==> machine1: Info: /Stage[main]/Mysql::Server::Service/Service[mysqld]: Unscheduling refresh on Service[mysqld]
==> machine1: Notice: /Stage[main]/Mysql::Server::Service/Exec[wait_for_mysql_socket_to_open]: Triggered 'refresh' from 1 event
==> machine1: Notice: /Stage[main]/Mysql::Server::Root_password/Mysql_user[root@localhost]/password_hash: defined 'password_hash' as '*23AE809DDACAF96AF0FD78ED04B6A265E05AA257'
==> machine1: Notice: /Stage[main]/Mysql::Server::Root_password/File[/root/.my.cnf]/ensure: defined content as '{md5}b52301963c1bc0d06bd0de29e43c22d1'
==> machine1: Notice: /Stage[main]/Mysql::Client::Install/Package[mysql_client]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Ssl_cert/Package[ssl-cert]/ensure: created
==> machine1: Notice: /Stage[main]/Php/Package[php7.2-fpm]/ensure: created
==> machine1: Notice: /Stage[main]/Php/File[php.conf]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Package[php7.2-dev]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Exec[set php session path owner/group]/returns: executed successfully
==> machine1: Notice: /Stage[main]/Composer/Exec[download_composer]/returns: executed successfully
==> machine1: Info: /Stage[main]/Composer/Exec[download_composer]: Scheduling refresh of Exec[move_composer_/usr/local/bin]
==> machine1: Notice: /Stage[main]/Composer/Exec[move_composer_/usr/local/bin]: Triggered 'refresh' from 1 event
==> machine1: Notice: /Stage[main]/Puphpet::Python::Pre/Package[libbz2-dev]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Python::Pre/Package[libsqlite3-dev]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Python::Pre/Package[llvm]/ensure: created
==> machine1: Notice: /Stage[main]/Pyenv/Vcsrepo[/usr/local/pyenv]/ensure: created
==> machine1: Notice: /Stage[main]/Pyenv/File[/usr/local/bin/pyenv]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Firewall/Puphpet::Firewall::Port[22]/Firewall[100 tcp/22]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Firewall::Post/Firewall[999 drop all]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Ruby/Puphpet::Ruby::Dotfile[do]/File[/home/vagrant/.rvmrc]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Ruby/Puphpet::Ruby::Dotfile[do]/File_line[rvm_autoupdate_flag=0 >> ~/.rvmrc]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Ruby/Puphpet::Ruby::Dotfile[do]/File[/root/.rvmrc]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Ruby/Puphpet::Ruby::Dotfile[do]/File_line[rvm_autoupdate_flag=0 >> /root/.rvmrc]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Install/Puphpet::Mariadb::Users[from puphpet::mariadb::install]/Mysql_user[dbuser@localhost]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Install/Puphpet::Mariadb::Databases[from puphpet::mariadb::install]/Mysql_database[dbname]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Install/Puphpet::Mariadb::Grants[from puphpet::mariadb::install]/Mysql_grant[dbuser@localhost/*.*]/privileges: privileges changed ['USAGE'] to ['ALL']
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Install/Puphpet::Mariadb::Grants[from puphpet::mariadb::install]/Mysql_grant[dbuser@localhost/*.*]/options: options changed ['NONE'] to ['GRANT']
==> machine1: Info: Apt::Source[nginx]: Scheduling refresh of Exec[apt_get_update_for_nginx]
==> machine1: Notice: /Stage[main]/Nginx::Package::Debian/Exec[apt_get_update_for_nginx]: Triggered 'refresh' from 1 event
==> machine1: Notice: /Stage[main]/Nginx::Package::Debian/Package[nginx]/ensure: created
==> machine1: Notice: /Stage[main]/Nginx::Config/File[/etc/nginx/conf.mail.d]/ensure: created
==> machine1: Notice: /Stage[main]/Nginx::Config/File[/var/nginx]/ensure: created
==> machine1: Notice: /Stage[main]/Nginx::Config/File[/var/nginx/client_body_temp]/ensure: created
==> machine1: Notice: /Stage[main]/Nginx::Config/File[/var/nginx/proxy_temp]/ensure: created
==> machine1: Notice: /Stage[main]/Nginx::Config/File[/etc/nginx/sites-available]/ensure: created
==> machine1: Notice: /Stage[main]/Nginx::Config/File[/etc/nginx/sites-enabled]/ensure: created
==> machine1: Info: Computing checksum on file /etc/nginx/nginx.conf
==> machine1: Info: /Stage[main]/Nginx::Config/File[/etc/nginx/nginx.conf]: Filebucketed /etc/nginx/nginx.conf to puppet with sum f7984934bd6cab883e1f33d5129834bb
==> machine1: Notice: /Stage[main]/Nginx::Config/File[/etc/nginx/nginx.conf]/content: content changed '{md5}f7984934bd6cab883e1f33d5129834bb' to '{md5}5a5dd39c7bc382bf8e98e11438707d2c'
==> machine1: Notice: /Stage[main]/Nginx::Config/File[/etc/nginx/conf.d/proxy.conf]/ensure: defined content as '{md5}bc466f58750b0607202ac1ca0ad6cbbf'
==> machine1: Info: Computing checksum on file /etc/nginx/conf.d/default.conf
==> machine1: Info: /Stage[main]/Nginx::Config/File[/etc/nginx/conf.d/default.conf]: Filebucketed /etc/nginx/conf.d/default.conf to puppet with sum 411a0b28ff9b21a1cd94a6cb2ae2217d
==> machine1: Notice: /Stage[main]/Nginx::Config/File[/etc/nginx/conf.d/default.conf]/ensure: removed
==> machine1: Info: Class[Nginx::Config]: Scheduling refresh of Class[Nginx::Service]
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Firewall::Port[443]/Firewall[100 tcp/443]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Php::Fpm::Config/Puphpet::Php::Fpm::Ini[error_log: /var/log/php-fpm.log]/Augeas[global/error_log: /var/log/php-fpm.log]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Fpm::Config/Puphpet::Php::Fpm::Ini[error_log: /var/log/php-fpm.log]/Augeas[global/error_log: /var/log/php-fpm.log]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Fpm::Config/Puphpet::Php::Fpm::Ini[pid: /run/php-fpm.pid]/Augeas[global/pid: /run/php-fpm.pid]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Fpm::Config/Puphpet::Php::Fpm::Ini[pid: /run/php-fpm.pid]/Augeas[global/pid: /run/php-fpm.pid]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Fpm::Config/Puphpet::Php::Fpm::Pool_ini[www/listen: 127.0.0.1:9000]/Augeas[www/listen: 127.0.0.1:9000]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Fpm::Config/Puphpet::Php::Fpm::Pool_ini[www/listen: 127.0.0.1:9000]/Augeas[www/listen: 127.0.0.1:9000]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Fpm::Config/Puphpet::Php::Fpm::Pool_ini[www/security.limit_extensions: .php]/Augeas[www/security.limit_extensions: .php]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Fpm::Config/Puphpet::Php::Fpm::Pool_ini[www/security.limit_extensions: .php]/Augeas[www/security.limit_extensions: .php]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Fpm::Config/Puphpet::Php::Fpm::Pool_ini[www/user: www-user]/Augeas[www/user: www-user]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Fpm::Config/Puphpet::Php::Fpm::Pool_ini[www/user: www-user]/Augeas[www/user: www-user]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[cgi.fix_pathinfo]/File[/etc/php/7.2/mods-available/zzzz_custom.ini]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[cgi.fix_pathinfo]/File[/etc/php/7.2/fpm/conf.d/zzzz_custom.ini]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[cgi.fix_pathinfo]/File[/etc/php/7.2/cli/conf.d/zzzz_custom.ini]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[cgi.fix_pathinfo]/Augeas[CUSTOM/cgi.fix_pathinfo: 1]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[cgi.fix_pathinfo]/Augeas[CUSTOM/cgi.fix_pathinfo: 1]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[display_errors]/Augeas[CUSTOM/display_errors: On]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[display_errors]/Augeas[CUSTOM/display_errors: On]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[error_reporting]/Augeas[CUSTOM/error_reporting: -1]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[error_reporting]/Augeas[CUSTOM/error_reporting: -1]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[session.save_path]/Augeas[CUSTOM/session.save_path: /var/lib/php/session]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[session.save_path]/Augeas[CUSTOM/session.save_path: /var/lib/php/session]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[date.timezone]/Augeas[CUSTOM/date.timezone: UTC]/returns: executed successfully
==> machine1: Info: /Stage[main]/Puphpet::Php::Install/Puphpet::Php::Ini[date.timezone]/Augeas[CUSTOM/date.timezone: UTC]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Letsencrypt::Install/Puphpet::Firewall::Port[80]/Firewall[100 tcp/80]/ensure: created
==> machine1: Notice: /Stage[main]/Puphpet::Mariadb::Php/Puphpet::Php::Module::Package[mysqlnd]/Php::Module[mysqlnd]/Package[PhpModule_mysqlnd]/ensure: created
==> machine1: Info: /Stage[main]/Puphpet::Mariadb::Php/Puphpet::Php::Module::Package[mysqlnd]/Php::Module[mysqlnd]/Package[PhpModule_mysqlnd]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Modules/Puphpet::Php::Module::Package[intl]/Php::Module[intl]/Package[PhpModule_intl]/ensure: created
==> machine1: Info: /Stage[main]/Puphpet::Php::Modules/Puphpet::Php::Module::Package[intl]/Php::Module[intl]/Package[PhpModule_intl]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Info: Puphpet::Php::Module::Package[intl]: Scheduling refresh of Service[php7.2-fpm]
==> machine1: Notice: /Stage[main]/Puphpet::Php::Install/Service[php7.2-fpm]: Triggered 'refresh' from 14 events
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Nginx::Resource::Vhost[vhost1]/Concat[/etc/nginx/sites-available/vhost1.conf]/File[/etc/nginx/sites-available/vhost1.conf]/ensure: defined content as '{md5}4c967c744e6171ed5ff61157ddaf5482'
==> machine1: Info: Concat[/etc/nginx/sites-available/vhost1.conf]: Scheduling refresh of Class[Nginx::Service]
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Nginx::Resource::Vhost[vhost1]/File[vhost1.conf symlink]/ensure: created
==> machine1: Info: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Nginx::Resource::Vhost[vhost1]/File[vhost1.conf symlink]: Scheduling refresh of Service[nginx]
==> machine1: Info: Computing checksum on file /etc/nginx/fastcgi_params
==> machine1: Info: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Puphpet::Nginx::Locations[from puphpet::nginx::vhosts, /var/www/awesome @ key vhost1]/Nginx::Resource::Location[php_php]/File[/etc/nginx/fastcgi_params]: Filebucketed /etc/nginx/fastcgi_params to puppet with sum 4729c30112ca3071f4650479707993ad
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Puphpet::Nginx::Locations[from puphpet::nginx::vhosts, /var/www/awesome @ key vhost1]/Nginx::Resource::Location[php_php]/File[/etc/nginx/fastcgi_params]/content: content changed '{md5}4729c30112ca3071f4650479707993ad' to '{md5}d32ecc12000c83d0131999e794ca4f18'
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Puphpet::Nginx::Locations[from puphpet::nginx::vhosts, /var/www/awesome @ key vhost1]/Nginx::Resource::Location[php_php]/File[/etc/nginx/fastcgi_params]/mode: mode changed '0644' to '0770'
==> machine1: Info: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Puphpet::Nginx::Locations[from puphpet::nginx::vhosts, /var/www/awesome @ key vhost1]/Nginx::Resource::Location[php_php]/File[/etc/nginx/fastcgi_params]: Scheduling refresh of Class[Nginx::Service]
==> machine1: Info: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Puphpet::Nginx::Locations[from puphpet::nginx::vhosts, /var/www/awesome @ key vhost1]/Nginx::Resource::Location[php_php]/File[/etc/nginx/fastcgi_params]: Scheduling refresh of Class[Nginx::Service]
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Nginx::Resource::Vhost[_]/Concat[/etc/nginx/sites-available/_.conf]/File[/etc/nginx/sites-available/_.conf]/ensure: defined content as '{md5}7cd383af9e76bacb89cd5bba2b045f0b'
==> machine1: Info: Concat[/etc/nginx/sites-available/_.conf]: Scheduling refresh of Class[Nginx::Service]
==> machine1: Info: Class[Nginx::Service]: Scheduling refresh of Service[nginx]
==> machine1: Notice: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Nginx::Resource::Vhost[_]/File[_.conf symlink]/ensure: created
==> machine1: Info: /Stage[main]/Puphpet::Nginx::Install/Puphpet::Nginx::Vhosts[from puphpet::nginx::install]/Nginx::Resource::Vhost[_]/File[_.conf symlink]: Scheduling refresh of Service[nginx]
==> machine1: Notice: /Stage[main]/Nginx::Service/Service[nginx]/ensure: ensure changed 'stopped' to 'running'
==> machine1: Info: /Stage[main]/Nginx::Service/Service[nginx]: Unscheduling refresh on Service[nginx]
==> machine1: Info: Class[Puphpet::Ruby]: Unscheduling all events on Class[Puphpet::Ruby]
==> machine1: Info: Stage[main]: Unscheduling all events on Stage[main]
==> machine1: Error: Could not find a suitable provider for rvm_system_ruby
==> machine1: Error: Could not find a suitable provider for rvm_gem
==> machine1: Info: Creating state file /opt/puppetlabs/puppet/cache/state/state.yaml
==> machine1: Notice: Applied catalog in 242.89 seconds
The SSH command responded with a non-zero exit status. Vagrant
assumes that this means the command failed. The output for this command
should be in the log above. Please read the output to determine what
went wrong.

C:\inetpub\VMs\test>
specky-rum commented 5 years ago

Solution from here: https://github.com/puphpet/puphpet/issues/2830#issuecomment-447345244 fixes it.