PHP Deployment Scripts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
neatoDeploy/app/OS/neato_Linux_Generic.php

28 lines
651 B

<?php
final class neato {
use \traits\su;
use \traits\linux_core;
use \traits\packages;
use \traits\init_systems;
const get_opt = '/opt/';
const get_etc = '/etc/';
const get_bin = '/bin/';
const get_super_bin = '/sbin/';
const get_user_bin = '/usr/bin/';
const get_super_user_bin = '/usr/sbin/';
const get_user_local_bin = '/usr/local/bin/';
public static $init_systems = [
'/etc/systemd'=>'systemd',
'/etc/init.d'=>'sys_v_init',
'/etc/init'=>'upstart',
'/etc/runlevels'=>'open_rc',
'/etc/runit'=>'runit',
];
protected function __construct() { }
}