This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> | |
<log4j:configuration> | |
<appender name="FileRoll" class="org.apache.log4j.rolling.RollingFileAppender"> | |
<param name="file" value="${gobblin.logs.dir}/gobblin-current.log" /> | |
<param name="append" value="true" /> | |
<param name="encoding" value="UTF-8" /> | |
<rollingPolicy class="org.apache.log4j.rolling.TimeBasedRollingPolicy"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Based on: | |
https://gist.github.com/meeuw/c3bc9dd07945c87c89e6#file-findfiles-py | |
https://bitbucket.org/nosklo/pysmbclient/wiki/Home | |
""" | |
import os | |
import pexpect | |
import re |