Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MetObs
AossCeilo
Commits
29b7e83f
Verified
Commit
29b7e83f
authored
May 17, 2021
by
David Hoese
Browse files
Add initial draft of ceilo adapter driver installation script
parent
1d2cfd82
Changes
2
Hide whitespace changes
Inline
Side-by-side
README.rst
View file @
29b7e83f
...
...
@@ -7,3 +7,12 @@ and higher level product generation.
NOTE: Most of the code in this repository was copied from the old subversion
repository. This code was executed on python 2.6/2.7 environments, but will
be run from python 3.6+ from now on. Some scripts may not work out of the box.
Serial Adapter
^^^^^^^^^^^^^^
To communicate with the ceilometer there is an ethernet to serial adapter
attached to it. The "rain01" server communicates to it through a special
driver from "MOXA" (the manufacturer of the adapter). This driver is
automatically installed as part of the root accounts crontab. See the
``scripts/reinstall_ceilo_driver.sh`` script for more information.
\ No newline at end of file
scripts/reinstall_ceilo_driver.sh
0 → 100755
View file @
29b7e83f
#!/usr/bin/env bash
# Description: This script must be run as root and will reinstall the "MOXA"
# drivers for the ethernet to serial adapter so the ceilometer can be
# communicated with. This should be run on reboot as the driver seems to
# have trouble with kernel updates and maybe even reboots of the server.
if
[
$UID
-ne
0
]
;
echo
"ERROR: This script must be run as root (UID 0)."
exit
1
fi
TARBALL
=
"/opt/metobs/misc/npreal2_1.18.65_build_17062316.tgz"
if
[
!
-f
$TARBALL
]
;
then
echo
"ERROR: Source tarball does not exist"
exit
1
fi
SRC_DIR
=
"/tmp/moxa"
if
[
!
-d
$SRC_DIR
]
;
then
cd
`
dirname
$SRC_DIR
`
tar
-xzf
$TARBALL
if
[
!
-d
$SRC_DIR
]
;
then
echo
"ERROR: Could not extract moxa drivers"
exit
1
fi
fi
DRIVER_DST
=
"/usr/lib/npreal2/driver"
# Uninstall the old drivers
if
[
-d
$DRIVER_DST
]
;
then
cd
$DRIVER_DST
./mxuninst
fi
cd
"
${
SRC_DIR
}
/kernel3.x"
/usr/bin/expect <
(
cat
<<
EOF
spawn ./mxinst SP1
expect "Do you want to continue installing?"
send "N
\r
"
expect eof
EOF
)
# Add the server
cd
$DRIVER_DST
./mxaddsvr 192.168.16.27 4
status
=
$?
if
[
$?
-ne
0]
;
then
echo
"ERROR: Could not install driver"
exit
1
fi
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment