Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
augeas: trim spaces arround '='
Closes #216
  • Loading branch information
Jakub Filak committed Dec 2, 2013
1 parent 8733954 commit 426953f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion augeas/libreport.aug
Expand Up @@ -2,7 +2,7 @@ module Libreport =
autoload xfm

(* Define useful primitives *)
let value_sep = del / = ?/ " = "
let value_sep = del / ?= ?/ " = "
let value_to_eol = store /([^ \t\n].*[^ \t\n]|[^ \t\n]?)/
let eol = del /\n/ "\n"
let ident = /[a-zA-Z][a-zA-Z_]+/
Expand Down
8 changes: 4 additions & 4 deletions augeas/test_libreport.aug
Expand Up @@ -19,8 +19,8 @@ Password =
DontMatchComponents = selinux-policy

# for more info about these settings see: https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets
# CreatePrivate = no
# PrivateGroups = private
CreatePrivate= no
PrivateGroups=private
"

test Libreport.lns get conf =
Expand All @@ -43,5 +43,5 @@ DontMatchComponents = selinux-policy
{ "DontMatchComponents" = "selinux-policy" }
{}
{ "#comment" = "for more info about these settings see: https://github.com/abrt/abrt/wiki/FAQ#creating-private-bugzilla-tickets" }
{ "#comment" = "CreatePrivate = no" }
{ "#comment" = "PrivateGroups = private" }
{ "CreatePrivate" = "no" }
{ "PrivateGroups" = "private" }

0 comments on commit 426953f

Please sign in to comment.