korrekte ids, hier werden von zypper keine quotes erwartet, da nur
zahlen moeglich sind
This commit is contained in:
parent
a37c48ed43
commit
72bbf93282
1 changed files with 3 additions and 3 deletions
|
@ -74,17 +74,17 @@ case "$state" in
|
||||||
;;
|
;;
|
||||||
absent)
|
absent)
|
||||||
if [ ! -z "$act_id" ]; then
|
if [ ! -z "$act_id" ]; then
|
||||||
echo zypper $zypper_def_opts removerepo "'$act_id'"
|
echo zypper $zypper_def_opts removerepo "$act_id"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
enabled)
|
enabled)
|
||||||
if [ ! -z "$act_id" ]; then
|
if [ ! -z "$act_id" ]; then
|
||||||
echo zypper $zypper_def_opts modifyrepo -e "'$act_id'"
|
echo zypper $zypper_def_opts modifyrepo -e "$act_id"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
disabled)
|
disabled)
|
||||||
if [ ! -z "$act_id" ]; then
|
if [ ! -z "$act_id" ]; then
|
||||||
echo zypper $zypper_def_opts modifyrepo -d "'$act_id'"
|
echo zypper $zypper_def_opts modifyrepo -d "$act_id"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|
Loading…
Reference in a new issue