Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
FUSS
fuss-server
Commits
bb9d21d0
Commit
bb9d21d0
authored
Jul 16, 2014
by
Simone Piccardi
Browse files
Better control on problematic chars in the password
parent
ebf6e31c
Changes
2
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
bb9d21d0
fuss-server (7.0.14) wheezy; urgency=medium
* added control to avoid some chars in the password (interference with sed expressions)
-- Simone Piccardi <piccardi@truelite.it> Wed, 16 Jul 2014 14:54:54 +0200
fuss-server (7.0.13) wheezy; urgency=medium
* better handling of configuration after a purge/create cycle
...
...
fuss-server
View file @
bb9d21d0
...
...
@@ -130,8 +130,8 @@ case "$1" in
.
"
$CONF_FILE
"
fi
# check for "prolematic" chars
if
echo
$MASTER_PASS
|
grep
'
/
'
>
/dev/null
;
then
echo
"
do not use
'
/
'
char
in master password"
if
echo
$MASTER_PASS
|
e
grep
'
(/|\&|\\)
'
>
/dev/null
;
then
echo
"
char '/', '
\'
and
'
&
'
not allowes
in master password"
resetconf MASTER_PASS
$CONF_CMD
.
"
$CONF_FILE
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment