Ошибки скриптов msec
Вот что выдает cron при запуске скрипта msec (Mandriva2006)
Питона я не знаю, подскажите в чем здесь ошибки?
/etc/cron.hourly/msec:
Traceback (most recent call last):
File "/usr/share/msec/Perms.py", line 319, in ?
fix_perms(p, _interactive, 1)
File "/usr/share/msec/Perms.py", line 174, in fix_perms
(user_str, group_str) = string.split(fields[1], '.')
ValueError: need more than 1 value to unpack
run-parts: /etc/cron.hourly/msec exited with return code 1
код:
# process the files
fix_perms(args[0], _interactive, 0)
for p in args[1:]:
_interactive and log(_('Reading data from %s') % p)
fix_perms(p, _interactive, 1) #строка
319
# do the modifications
act(change)
# Perms.py ends here
if fields[1] == 'current':
user = group = -1
user_str = group_str = ''
else:
(user_str, group_str) = string.split(fields[1], '.') #строка
174
if user_str != '':
user = get_user_id(user_str)
else:
user = -1
if group_str != '':
group = get_group_id(group_str)
else:
group = -1
-*Название листа "Linux: разрешение вопросов, перспективы и общение";
Написать в лист: mailto:comp.soft.linux.discuss-list@subscribe.ru
Адрес правил листа http://subscribe.ru/catalog/comp.soft.linux.discuss/rules
Номер письма: 25974; Возраст листа: 997; Участников: 1530
Адрес сайта рассылки: http://www.linuxrsp.ru
Адрес этого письма в архиве: http://subscribe.ru/archive/comp.soft.linux.discuss/msg/538541
avm7 пишет:
Вот здесь он хотел строчку в виде "user.group", но не нашел в fields[1]
точки