mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-25 23:55:57 +03:00
[GH-ISSUE #435] Function __unquote_string is missing in libvirt-bootstrap.sh #325
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @alexgit2k on GitHub (Sep 19, 2014).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/435
libvirt-bootstrap.sh failes on RHEL 7, because function __unquote_string is missing:
#--- FUNCTION ------------------------------------------------------------------------------------------------------- # NAME: __unquote_string # DESCRIPTION: Strip single or double quotes from the provided string. #---------------------------------------------------------------------------------------------------------------------- __unquote_string() { echo "${@}" | sed "s/^\([\"']\)\(.*\)\1\$/\2/g" }