diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-05-06 22:13:12 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-05-06 22:28:43 +0200 |
commit | d5c11ff64cb280ddd1bc8b57e34508e2fa1d3c5c (patch) | |
tree | 56c0f711b4e8663b36d19ea7d45df7a6879adf4b | |
parent | 382ff439ebe136f748e1aa7ce66ebaf477929cb2 (diff) | |
download | alpine-conf-d5c11ff64cb280ddd1bc8b57e34508e2fa1d3c5c.zip |
setup-interfaces: replace non-breaking space with normal space
Non-breaking space (0xc2 0xa0) was added by mistake. Replace it with a
normal space.
-rw-r--r-- | setup-interfaces.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-interfaces.in b/setup-interfaces.in index 1bf0713..c62cd30 100644 --- a/setup-interfaces.in +++ b/setup-interfaces.in @@ -400,7 +400,7 @@ prompt_for_interfaces() { index=$(( $index + 1 )) done - if [ "$(openrc --sys)" != "LXC" ] || ! ip addr show lo | grep -q 'inet.*127\.0'; then + if [ "$(openrc --sys)" != "LXC" ] || ! ip addr show lo | grep -q 'inet.*127\.0'; then echo "type=loopback" > 000~lo.conf echo "" > interface fi |