forked from ungleich-public/cdist
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)
|
||||
if [ ! -z "$act_id" ]; then
|
||||
echo zypper $zypper_def_opts removerepo "'$act_id'"
|
||||
echo zypper $zypper_def_opts removerepo "$act_id"
|
||||
fi
|
||||
;;
|
||||
enabled)
|
||||
if [ ! -z "$act_id" ]; then
|
||||
echo zypper $zypper_def_opts modifyrepo -e "'$act_id'"
|
||||
echo zypper $zypper_def_opts modifyrepo -e "$act_id"
|
||||
fi
|
||||
;;
|
||||
disabled)
|
||||
if [ ! -z "$act_id" ]; then
|
||||
echo zypper $zypper_def_opts modifyrepo -d "'$act_id'"
|
||||
echo zypper $zypper_def_opts modifyrepo -d "$act_id"
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
|
|
Loading…
Reference in a new issue