macbook clamav
This commit is contained in:
parent
5cb5396817
commit
4415bc32f5
3 changed files with 25 additions and 1 deletions
1
bundles/macbook/files/freshclam.conf
Normal file
1
bundles/macbook/files/freshclam.conf
Normal file
|
@ -0,0 +1 @@
|
||||||
|
DatabaseMirror database.clamav.net
|
|
@ -1,3 +1,12 @@
|
||||||
|
# brew install
|
||||||
|
|
||||||
|
actions['brew_install'] = {
|
||||||
|
'command': '/opt/homebrew/bin/brew install ' + ' '.join(node.metadata.get('brew')),
|
||||||
|
'unless': f"""PKGS=$(/opt/homebrew/bin/brew leaves); for p in {' '.join(node.metadata.get('brew'))}; do grep -q "$p" <<< $PKGS || exit 9; done"""
|
||||||
|
}
|
||||||
|
|
||||||
|
# bw init
|
||||||
|
|
||||||
directories['/Users/mwiegand/.config/bundlewrap/lock'] = {}
|
directories['/Users/mwiegand/.config/bundlewrap/lock'] = {}
|
||||||
|
|
||||||
# home
|
# home
|
||||||
|
@ -21,6 +30,16 @@ files['/Users/mwiegand/.local/share/direnv/pyenv'] = {}
|
||||||
files['/Users/mwiegand/.local/share/direnv/venv'] = {}
|
files['/Users/mwiegand/.local/share/direnv/venv'] = {}
|
||||||
files['/Users/mwiegand/.local/share/direnv/bundlewrap'] = {}
|
files['/Users/mwiegand/.local/share/direnv/bundlewrap'] = {}
|
||||||
|
|
||||||
|
|
||||||
|
# clamav
|
||||||
|
|
||||||
|
files['/opt/homebrew/etc/clamav/freshclam.conf'] = {
|
||||||
|
'group': 'admin',
|
||||||
|
}
|
||||||
|
# run me baby one more time:
|
||||||
|
# freshclam && clamscan --infected --recursive --exclude-dir ~/Library/Mail ~
|
||||||
|
|
||||||
|
|
||||||
##################
|
##################
|
||||||
|
|
||||||
for element in [*files.values(), *directories.values()]:
|
for element in [*files.values(), *directories.values()]:
|
||||||
|
|
|
@ -1 +1,5 @@
|
||||||
defaults = {}
|
defaults = {
|
||||||
|
'brew': {
|
||||||
|
'clamav',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue