All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nebula.plugin.ospackage.daemon.DaemonDefinition.groovy Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
package nebula.plugin.ospackage.daemon

import groovy.transform.Canonical

/**
 * Template variables. Fields start off empty an only at
 */
@Canonical
class DaemonDefinition {

    String daemonName // defaults to packageName
    String command // Required
    String user // defaults to "root"
    String logCommand // defaults to "multilog t ./main"
    List runLevels = new LinkedList<>() // rpm default == [3,4,5], deb default = [2,3,4,5]
    Boolean autoStart // default true
    Integer startSequence // default 85
    Integer stopSequence // default 15

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy