fix(pp): change git urls from 'git://' to 'https://'

The 'git' schema no longer works git repos no longer get cloned
This commit is contained in:
Ade Attwood 2022-06-12 20:44:21 +01:00
parent c281311657
commit 7240bda30e
2 changed files with 6 additions and 6 deletions

View file

@ -20,21 +20,21 @@ class core::tmux {
vcsrepo { "${user_home}/.tmux/plugins/tmux-yank":
ensure => latest,
source => 'git://github.com/tmux-plugins/tmux-yank.git',
source => 'https://github.com/tmux-plugins/tmux-yank.git',
provider => git,
revision => 'master',
}
vcsrepo { "${user_home}/.tmux/plugins/tmux-open":
ensure => latest,
source => 'git://github.com/tmux-plugins/tmux-open.git',
source => 'https://github.com/tmux-plugins/tmux-open.git',
provider => git,
revision => 'master',
}
vcsrepo { "${user_home}/.tmux/plugins/tmux-copycat":
ensure => latest,
source => 'git://github.com/tmux-plugins/tmux-copycat.git',
source => 'https://github.com/tmux-plugins/tmux-copycat.git',
provider => git,
revision => 'master',
}

View file

@ -1,6 +1,6 @@
class core::zsh {
vcsrepo { "${user_home}/.oh-my-zsh":
source => 'git://github.com/robbyrussell/oh-my-zsh.git',
source => 'https://github.com/robbyrussell/oh-my-zsh.git',
provider => 'git',
user => $user,
revision => 'master',
@ -50,13 +50,13 @@ class core::zsh {
}
vcsrepo { "${user_home}/.oh-my-zsh/custom/plugins/zsh-autosuggestions":
source => 'git://github.com/zsh-users/zsh-autosuggestions',
source => 'https://github.com/zsh-users/zsh-autosuggestions',
provider => 'git',
user => $user,
}
vcsrepo { "${user_home}/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting":
source => 'git://github.com/zsh-users/zsh-syntax-highlighting.git',
source => 'https://github.com/zsh-users/zsh-syntax-highlighting.git',
provider => 'git',
user => $user,
}