Skip to content

Commit f0adfab

Browse files
committed
pull in upstream upgrades
1 parent 29d9d6f commit f0adfab

File tree

8 files changed

+160
-147
lines changed

8 files changed

+160
-147
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,11 @@ By default these commands will resize the partition to the available maximum
109109
* resize partition
110110
`sudo cfdisk /dev/sda`
111111

112-
* restart machine
113-
114112
* resize
115113
`sudo pvresize /dev/sda1`
116114

117-
* show volume names
115+
* show volume names and display sized
118116
`sudo lvdisplay`
119-
120-
* display sizes
121117
`sudo vgdisplay`
122118

123119
* extend lvm root partition to maximum
@@ -126,10 +122,14 @@ By default these commands will resize the partition to the available maximum
126122
* resize filesystem to to the partition size
127123
`sudo resize2fs /dev/vagrant-vg/root`
128124

125+
* reboot
126+
129127
## Slow copy and paste
130128

131129
Add this to your **.zshrc** file
132130

131+
`vim ~/.zshrc`
132+
133133
```bash
134134
### Fix slowness of pastes with zsh-syntax-highlighting.zsh
135135
pasteinit() {

Vagrantfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@ SCRIPT
377377

378378
# Perform preliminary setup before the main Ansible provisioning
379379
config.vm.provision 'ansible_local' do |ansible|
380+
ansible.extra_vars = { ansible_python_interpreter: '/usr/bin/python3' }
380381
ansible.playbook = 'provisioning/init.yml'
381382
ansible.skip_tags = config.user.ansible.skip_tags
382383
end
@@ -390,6 +391,7 @@ SCRIPT
390391
ansible.galaxy_command = 'ansible-galaxy install --role-file=%{role_file} --roles-path=%{roles_path} --force'
391392

392393
ansible.extra_vars = {
394+
ansible_python_interpreter: '/usr/bin/python3',
393395
timezone: config.user.timezone,
394396

395397
locales_present: config.user.locales.present,

docs/Gemfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ source "https://rubygems.org"
99
# This will help ensure the proper Jekyll version is running.
1010
# Happy Jekylling!
1111

12-
gem "github-pages", "198", group: :jekyll_plugins
12+
gem 'github-pages', '214', group: :jekyll_plugins
1313

1414
# If you want to use Jekyll native, uncomment the line below.
1515
# To upgrade, run `bundle update`.
1616

1717
# gem "jekyll"
1818

1919
# Install minimal-mistakes theme
20-
gem 'minimal-mistakes-jekyll', '4.16.5'
20+
gem 'minimal-mistakes-jekyll', '4.22.0'
2121

2222
# If you have any plugins, put them here!
2323
group :jekyll_plugins do
2424
# gem "jekyll-archives"
25-
gem 'html-proofer', '3.13.0'
26-
end
25+
gem 'html-proofer', '3.18.8'
26+
end

0 commit comments

Comments
 (0)