diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/conf_mode/interfaces-pppoe.py | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/src/conf_mode/interfaces-pppoe.py b/src/conf_mode/interfaces-pppoe.py index 0c46dbecd..f318614db 100755 --- a/src/conf_mode/interfaces-pppoe.py +++ b/src/conf_mode/interfaces-pppoe.py @@ -325,6 +325,11 @@ def generate(pppoe):              os.unlink(ip_pre_up_script_file)      else: +        # PPP peers directory +        dirname = os.path.dirname(config_file_pppoe) +        if not os.path.isdir(dirname): +            os.mkdir(dirname) +          # Create PPP configuration files          tmpl = Template(config_pppoe_tmpl)          config_text = tmpl.render(pppoe) | 
