Home | History | Annotate | Download | only in scripts

Lines Matching refs:ii

234       for ii in zlist:
235 zone = zdict[ii].getName()
236 zfile = rname + '/' + zdict[ii].getFile()
282 for ii, val in opts:
283 if ii in ('-a', '--analyze-only'):
285 if ii in ('-h', '--help'):
288 if ii in ('-n', '--now'):
290 if ii in ('-s', '--sync-only'):
292 if ii in ('-v', '--verbose'):
328 for ii in tmplist:
329 watchlist.append(ii.strip())
331 for ii in watchlist:
332 if ii in last_stat.keys():
333 statinfo = os.stat(ii)
334 this_stat[ii] = (statinfo.st_size, statinfo.st_mtime)
335 (old_size, old_mtime) = last_stat[ii]
336 (new_size, new_mtime) = this_stat[ii]
338 report_info('aha! "%s" has changed!' % (ii))
339 last_stat[ii] = (new_size, new_mtime)
344 statinfo = os.stat(ii)
345 last_stat[ii] = (statinfo.st_size, statinfo.st_mtime)
346 this_stat[ii] = last_stat[ii]