syntax error after install
Brought to you by:
gstein
After installing via "sudo make install" and trying to run edna as root, I receive the error:
"ImportError: No module named ezt"
This is just a matter of the executable in the /usr/bin folder not recognizing that it needs to import from /usr/lib instead of the local folder.
After installing via "sudo make install-daemon" and trying "sudo /etc/init.d/edna start", I receive this error:
/etc/init.d/edna: 54: Syntax error: "(" unexpected
Simply running the python file in the folder provided works fine.
Logged In: NO
Update: the error in daemon mode can be fixed by editing the daemon/edna file (which is put in /etc/init.d/) and change the lines that say
function suse () {
function redhat () {
function debian () {
to say
suse () {
redhat () {
debian () {
It was just a simple bash syntax error.