remove apt-listchanges
This commit is contained in:
parent
98e05fc151
commit
9c639b4977
2 changed files with 56 additions and 51 deletions
|
@ -23,12 +23,12 @@ directories = {
|
|||
'action:apt_update',
|
||||
},
|
||||
},
|
||||
'/etc/apt/listchanges.conf.d': {
|
||||
'purge': True,
|
||||
'triggers': {
|
||||
'action:apt_update',
|
||||
},
|
||||
},
|
||||
# '/etc/apt/listchanges.conf.d': {
|
||||
# 'purge': True,
|
||||
# 'triggers': {
|
||||
# 'action:apt_update',
|
||||
# },
|
||||
# },
|
||||
'/etc/apt/preferences.d': {
|
||||
'purge': True,
|
||||
'triggers': {
|
||||
|
@ -56,9 +56,9 @@ files = {
|
|||
'action:apt_update',
|
||||
},
|
||||
},
|
||||
'/etc/apt/listchanges.conf': {
|
||||
'content': repo.libs.ini.dumps(node.metadata.get('apt/list_changes')),
|
||||
},
|
||||
# '/etc/apt/listchanges.conf': {
|
||||
# 'content': repo.libs.ini.dumps(node.metadata.get('apt/list_changes')),
|
||||
# },
|
||||
'/usr/lib/nagios/plugins/check_apt_upgradable': {
|
||||
'mode': '0755',
|
||||
},
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
defaults = {
|
||||
'apt': {
|
||||
'packages': {
|
||||
'apt-listchanges': {
|
||||
'installed': False,
|
||||
},
|
||||
},
|
||||
'config': {
|
||||
'DPkg': {
|
||||
'Pre-Install-Pkgs': {
|
||||
|
@ -125,45 +130,45 @@ def unattended_upgrades(metadata):
|
|||
}
|
||||
|
||||
|
||||
@metadata_reactor.provides(
|
||||
'apt/config',
|
||||
'apt/list_changes',
|
||||
)
|
||||
def listchanges(metadata):
|
||||
return {
|
||||
'apt': {
|
||||
'config': {
|
||||
'DPkg': {
|
||||
'Pre-Install-Pkgs': {
|
||||
'/usr/bin/apt-listchanges --apt || test $? -lt 10',
|
||||
},
|
||||
'Tools': {
|
||||
'Options': {
|
||||
'/usr/bin/apt-listchanges': {
|
||||
'Version': '2',
|
||||
'InfoFD': '20',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
'Dir': {
|
||||
'Etc': {
|
||||
'apt-listchanges-main': 'listchanges.conf',
|
||||
'apt-listchanges-parts': 'listchanges.conf.d',
|
||||
},
|
||||
},
|
||||
},
|
||||
'list_changes': {
|
||||
'apt': {
|
||||
'frontend': 'pager',
|
||||
'which': 'news',
|
||||
'email_address': 'root',
|
||||
'email_format': 'text',
|
||||
'confirm': 'false',
|
||||
'headers': 'false',
|
||||
'reverse': 'false',
|
||||
'save_seen': '/var/lib/apt/listchanges.db',
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
# @metadata_reactor.provides(
|
||||
# 'apt/config',
|
||||
# 'apt/list_changes',
|
||||
# )
|
||||
# def listchanges(metadata):
|
||||
# return {
|
||||
# 'apt': {
|
||||
# 'config': {
|
||||
# 'DPkg': {
|
||||
# 'Pre-Install-Pkgs': {
|
||||
# '/usr/bin/apt-listchanges --apt || test $? -lt 10',
|
||||
# },
|
||||
# 'Tools': {
|
||||
# 'Options': {
|
||||
# '/usr/bin/apt-listchanges': {
|
||||
# 'Version': '2',
|
||||
# 'InfoFD': '20',
|
||||
# },
|
||||
# },
|
||||
# },
|
||||
# },
|
||||
# 'Dir': {
|
||||
# 'Etc': {
|
||||
# 'apt-listchanges-main': 'listchanges.conf',
|
||||
# 'apt-listchanges-parts': 'listchanges.conf.d',
|
||||
# },
|
||||
# },
|
||||
# },
|
||||
# 'list_changes': {
|
||||
# 'apt': {
|
||||
# 'frontend': 'pager',
|
||||
# 'which': 'news',
|
||||
# 'email_address': 'root',
|
||||
# 'email_format': 'text',
|
||||
# 'confirm': 'false',
|
||||
# 'headers': 'false',
|
||||
# 'reverse': 'false',
|
||||
# 'save_seen': '/var/lib/apt/listchanges.db',
|
||||
# },
|
||||
# },
|
||||
# },
|
||||
# }
|
||||
|
|
Loading…
Reference in a new issue