refactor(pp): have a good think about the package that get installed
This has not been reviewed for quite some time, and things linke filezilla as getting installed.
This commit is contained in:
parent
1f9440bd30
commit
ac1be9cab1
1 changed files with 10 additions and 12 deletions
|
|
@ -4,26 +4,16 @@ class core::packages {
|
|||
#
|
||||
package { [
|
||||
'cmake',
|
||||
'filezilla',
|
||||
'firefox',
|
||||
'git',
|
||||
'mutt',
|
||||
'neovim',
|
||||
'notmuch-mutt',
|
||||
'notmuch',
|
||||
'offlineimap',
|
||||
'silversearcher-ag',
|
||||
'tmux',
|
||||
'bat',
|
||||
'urlscan',
|
||||
'vim',
|
||||
'zsh',
|
||||
'build-essential',
|
||||
'chromium-browser',
|
||||
'keepass2',
|
||||
'python-dev',
|
||||
'ruby-dev',
|
||||
'software-properties-common',
|
||||
'fd-find'
|
||||
'fzf'
|
||||
]:
|
||||
ensure => installed,
|
||||
}
|
||||
|
|
@ -40,6 +30,14 @@ class core::packages {
|
|||
provider => 'shell',
|
||||
}
|
||||
|
||||
exec { 'Link fdfind to fd':
|
||||
command => 'ln -s /usr/bin/fdfind /usr/bin/fd',
|
||||
onlyif => 'test -e /usr/bin/fdfind',
|
||||
creates => '/usr/bin/fd',
|
||||
path => '/bin:/usr/bin',
|
||||
provider => 'shell',
|
||||
}
|
||||
|
||||
# core::packages::npm { [
|
||||
# 'grunt',
|
||||
# 'intelephense',
|
||||
|
|
|
|||
Loading…
Reference in a new issue