Package org.platformlayer.ops.filesystem

Examples of org.platformlayer.ops.filesystem.ManagedSymlink


    // Note: Don't use supervisord.conf, otherwise supervisorctl will fail with:
    // "Error: .ini file does not include supervisorctl section"
    addChild(TemplatedFile.build(template, new File(instanceDir, "supervisor.conf")).setFileMode("0444"));

    {
      ManagedSymlink symlink = ManagedSymlink.build(
          new File("/etc/supervisor/conf.d/" + supervisorKey + ".conf"), new File(instanceDir,
              "supervisor.conf"));
      addChild(symlink);
    }
View Full Code Here

TOP

Related Classes of org.platformlayer.ops.filesystem.ManagedSymlink

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.