mirror of
https://github.com/isjerryxiao/pacroller.git
synced 2024-11-15 04:42:24 +08:00
add known_output
This commit is contained in:
parent
0c41cb7aa2
commit
b49a2f5c55
1 changed files with 12 additions and 0 deletions
|
@ -10,6 +10,9 @@ KNOWN_HOOK_OUTPUT = {
|
||||||
'30-systemd-sysctl.hook': [
|
'30-systemd-sysctl.hook': [
|
||||||
r'Not setting (.+) \(explicit setting exists\)\.',
|
r'Not setting (.+) \(explicit setting exists\)\.',
|
||||||
],
|
],
|
||||||
|
'30-systemd-udev-reload.hook': [
|
||||||
|
r'[ ][ ]Skipped: Device manager is not running\.',
|
||||||
|
],
|
||||||
'90-mkinitcpio-install.hook': [
|
'90-mkinitcpio-install.hook': [
|
||||||
r'==> Building image from preset: .+',
|
r'==> Building image from preset: .+',
|
||||||
r'==> Starting build: .+',
|
r'==> Starting build: .+',
|
||||||
|
@ -38,6 +41,10 @@ _keyring_output = [
|
||||||
r'[ ]+-> .+',
|
r'[ ]+-> .+',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
_vbox_output = [
|
||||||
|
r'0%\.\.\.10%\.\.\.20%\.\.\.30%\.\.\.40%\.\.\.50%\.\.\.60%\.\.\.70%\.\.\.80%\.\.\.90%\.\.\.100%',
|
||||||
|
]
|
||||||
|
|
||||||
KNOWN_PACKAGE_OUTPUT = {
|
KNOWN_PACKAGE_OUTPUT = {
|
||||||
'': [],
|
'': [],
|
||||||
'archlinux-keyring': _keyring_output,
|
'archlinux-keyring': _keyring_output,
|
||||||
|
@ -53,5 +60,10 @@ KNOWN_PACKAGE_OUTPUT = {
|
||||||
'fontconfig': [
|
'fontconfig': [
|
||||||
r'Rebuilding fontconfig cache\.\.\.',
|
r'Rebuilding fontconfig cache\.\.\.',
|
||||||
],
|
],
|
||||||
|
'nvidia-utils': 'If you run into trouble with CUDA not being available, run nvidia-modprobe first\.',
|
||||||
|
'virtualbox': _vbox_output,
|
||||||
|
'virtualbox-ext-oracle': _vbox_output,
|
||||||
|
'virtualbox-ext-vnc': _vbox_output,
|
||||||
|
'virtualbox-ext-vnc-svn': _vbox_output,
|
||||||
**KNOWN_PACKAGE_OUTPUT_OVERRIDE
|
**KNOWN_PACKAGE_OUTPUT_OVERRIDE
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue