Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 392850 Details for
Bug 534202
sys-apps/systemd-216-r2: bash-completion Failed to get properties: Unit name autovt@.service is not valid.
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Fix systemctl errors on Tab competion for "restart" and "isolate"
systemctl-bash-completion.patch (text/plain), 1.15 KB, created by
Garry Filakhtov
on 2015-01-01 13:27:59 UTC
(
hide
)
Description:
Fix systemctl errors on Tab competion for "restart" and "isolate"
Filename:
MIME Type:
Creator:
Garry Filakhtov
Created:
2015-01-01 13:27:59 UTC
Size:
1.15 KB
patch
obsolete
>--- orig/systemctl 2015-01-01 15:22:40.321734460 +0200 >+++ patch/systemctl 2015-01-01 15:26:35.297714222 +0200 >@@ -182,8 +182,8 @@ > comps=$( __filter_units_by_property $mode CanStart yes \ > $( __get_all_units $mode \ > | while read -r line; do \ >- [[ "$line" =~ \.(device|snapshot|socket|timer)$ ]] || echo " $line"; \ >- done )) >+ [[ "$line" =~ @\.|\.(device|snapshot|socket|timer)$ ]] || echo " $line"; \ >+ done ) ) > compopt -o filenames > > elif __contains_word "$verb" ${VERBS[STOPPABLE_UNITS]}; then >@@ -198,7 +198,10 @@ > > elif __contains_word "$verb" ${VERBS[ISOLATABLE_UNITS]}; then > comps=$( __filter_units_by_property $mode AllowIsolate yes \ >- $( __get_all_units $mode ) ) >+ $( __get_all_units $mode \ >+ | while read -r line; do \ >+ [[ "$line" =~ @\. ]] || echo " $line"; \ >+ done ) ) > compopt -o filenames > > elif __contains_word "$verb" ${VERBS[FAILED_UNITS]}; then
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 534202
: 392850