Koozali.org: home of the SME Server

smeserver-sme8admin in smecontribs repository

Offline Jean-Philippe Pialasse

  • *
  • 2,912
  • +11/-0
  • aka Unnilennium
    • http://smeserver.pialasse.com
smeserver-sme8admin in smecontribs repository
« on: August 30, 2012, 07:18:51 PM »
Hello,

i am pleased to announce the new version of this long known contrib adapted for sme8.

-a lot of bug fix.
-new features to enable or disable services
-x64 compatibility.

to install :

Code: [Select]
yum install smeserver-sme8admin --enablerepo=smecontribs
wiki page will follow

for any bug please raise a bug against the contrib "unknown"  and add me in CC

« Last Edit: August 30, 2012, 07:21:53 PM by unnilennium »

Offline _alex

  • ****
  • 103
  • +0/-0
Re: smeserver-sme8admin in smecontribs repository
« Reply #1 on: August 31, 2012, 01:17:12 PM »
Great news, thanks!  :)

FIY, I had to apply this http://bugs.contribs.org/show_bug.cgi?id=3022#c3 to get it working
replacing sme7admind by sme8admind, of course.

edit:
sensors fail to start at boot, so I tried with
Code: [Select]
ln -s /etc/rc.d/init.d/e-smith-service /etc/rc7.d/S98lm_sensorswith no luck.

I solved it by adding the following line to /etc/rc.loal:
Code: [Select]
/etc/init.d/lm_sensors restart
Not a very elegant solution, but I really don't care, as long as it works.

« Last Edit: August 31, 2012, 02:00:50 PM by _alex »

Offline Jean-Philippe Pialasse

  • *
  • 2,912
  • +11/-0
  • aka Unnilennium
    • http://smeserver.pialasse.com
Re: smeserver-sme8admin in smecontribs repository
« Reply #2 on: August 31, 2012, 02:55:27 PM »
i have reopen the listed bug to correct this issue, can you post there to confirm what you didi to resolve in order that i patch against a new version.


about sensors



sensors detect final output is:
Quote
To make the sensors modules behave correctly, add these lines to
/etc/modprobe.conf:

#----cut here----
# I2C module options
alias char-major-89 i2c-dev
#----cut here----

To load everything that is needed, add this to some /etc/rc* file:

#----cut here----
# Chip drivers
modprobe f71805f
# sleep 2 # optional
/usr/bin/sensors -s # recommended
#----cut here----

If you have some drivers built into your kernel, the list above will
contain too many modules. Skip the appropriate ones! You really
should try these commands right now to make sure everything is
working properly. Monitoring programs won't work until the needed
modules are loaded.


i usually just paste the second one at the end of  /etc/rc.d/rc.local and that do the trick without defining a ln for /etc/rc.d/init.d/lm_sensors

Offline _alex

  • ****
  • 103
  • +0/-0
Re: smeserver-sme8admin in smecontribs repository
« Reply #3 on: August 31, 2012, 03:22:56 PM »
Here is what I did:
Code: [Select]
rm /etc/rc7.d/S97sme8admind
ln -s /etc/rc.d/init.d/e-smith-service /etc/rc7.d/S99sme8admind

Thanks for the sensors tip!