projects
/
contrib
/
pines
/
report-creator.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a57afaf
)
Fix variable assignments.
author
Chris Sharp
<csharp@georgialibraries.org>
Wed, 12 Jul 2017 23:04:39 +0000
(19:04 -0400)
committer
Chris Sharp
<csharp@georgialibraries.org>
Wed, 12 Jul 2017 23:04:39 +0000
(19:04 -0400)
install-ubuntu.sh
patch
|
blob
|
history
diff --git
a/install-ubuntu.sh
b/install-ubuntu.sh
index
f29d626
..
27a59ce
100755
(executable)
--- a/
install-ubuntu.sh
+++ b/
install-ubuntu.sh
@@
-22,8
+22,8
@@
if [ "$(whoami)" != "root" ]; then
echo "Must be root to run this script." && exit 1
fi
-DISTRO="
lsb_release -i | awk '{print $3}'
"
-RELEASE="
lsb_release -r | awk '{print $2}'
"
+DISTRO="
$(lsb_release -i | awk '{print $3}')
"
+RELEASE="
$(lsb_release -r | awk '{print $2}')
"
OSRF_WEB_ROOT="/openils/var/web"
if [ "$DISTRO" == "Ubuntu" ]; then
if [ "$RELEASE" == "16.04" ]; then