#!/usr/bin/perl # index.cgi # Display a list of run-levels and the actions that are run at boot and # shutdown time for each level require './init-lib.pl'; require './hostconfig-lib.pl'; &ui_print_header(&text('index_mode', $text{'mode_'.$init_mode}), $text{'index_title'}, "", undef, 1, 1); if ($init_mode eq "osx" && $access{'bootup'}) { # This hostconfig if block written by Michael A Peters <mpeters@mac.com> # for OSX/Darwin. # build hostconfig table @hconf_set = &hostconfig_settings(); %description_list = &hostconfig_gather(description); print &ui_columns_start([ &text('index_action'), &text('index_setting'), &text('index_desc') ], 100, 0); $i = 0; while (<@hconf_set>) { $action_description = $description_list{"$hconf_set[$i][0]"}; print &hostconfig_table($hconf_set[$i][0], $hconf_set[$i][1], $action_description); $i++; } print &ui_columns_end(); if ($access{'bootup'} == 1) { print &ui_links_row([ &ui_link("edit_hostconfig.cgi?1", $text{'index_add_mac'}), &ui_link("edit_hostconfig.cgi?2", &text('index_editconfig',"<tt>$config{'hostconfig'}</tt>") ) ]); } } elsif ($init_mode eq "init" && $access{'bootup'}) { # build list of normal and broken actions @iacts = &list_actions(); foreach $a (@iacts) { @ac = split(/\s+/, $a); $nodemap{$ac[1]} = $ac[0]; push(@acts, $ac[0]); push(@actsl, "0+".&urlize($ac[0])); push(@actsf, $ac[0] =~ /^\// ? $ac[0] : "$config{'init_dir'}/$ac[0]"); } @runlevels = &list_runlevels(); foreach $r (@runlevels) { foreach $w ("S", "K") { foreach $a (&runlevel_actions($r, $w)) { @ac = split(/\s+/, $a); if (!$nodemap{$ac[2]}) { push(@acts, $ac[1]); push(@actsl, "1+$r+$ac[0]+$ac[1]+$ac[2]+$w"); push(@actsf, "$config{'init_base'}/rc$r.d/$w$ac[0]$ac[1]"); } } } } # For each action, look at /etc/rc*.d/* files to see if it is # started at boot @boot = &get_inittab_runlevel(); for($i=0; $i<@acts; $i++) { foreach $s (&action_levels('S', $acts[$i])) { local ($l, $p) = split(/\s+/, $s); local ($lvl) = (&indexof($l, @boot) >= 0); push(@{$actsb[$i]}, [ $l, $p, $lvl ]); } @{$actsb[$i]} = sort { $b->[2] <=> $a->[2] } @{$actsb[$i]}; } # Sort the actions if necessary @order = ( 0 .. $#acts ); if ($config{'sort_mode'}) { @order = sort { local $aa = $actsb[$a]->[0]; local $bb = $actsb[$b]->[0]; $bb->[2] <=> $aa->[2] || $bb->[1] <=> $aa->[1] } @order; } @acts = map { $acts[$_] } @order; @actsl = map { $actsl[$_] } @order; @actsf = map { $actsf[$_] } @order; @actsb = map { $actsb[$_] } @order; @links = ( ); if ($access{'bootup'} == 1) { push(@links, &ui_link("edit_action.cgi?2", $text{'index_add'}) ); } if (!$config{'desc'}) { # Display actions by name only print &ui_links_row(\@links); @grid = ( ); for($i=0; $i<@acts; $i++) { if ($acts[$i]) { push(@grid, &ui_link("edit_action.cgi?".$actsl[$i], $acts[$i]) ); } } print &ui_grid_table(\@grid, 4, 100, [ "width=25%", "width=25%", "width=25%", "width=25%" ], undef, $text{'index_title'}); print &ui_links_row(\@links); } else { # Display actions and descriptions print &ui_form_start("mass_start_stop.cgi", "post"); print &ui_links_row(\@links); print &ui_columns_start([ "", $text{'index_action'}, $config{'desc'} == 2 ? $text{'index_levels'} : $text{'index_boot'}, $config{'order'} ? ( $text{'index_order'} ) : ( ), $config{'status_check'} == 2 ? ( $text{'index_status'} ) : ( ), $text{'index_desc'} ], 100, 0, [ "", "nowrap", "nowrap", "nowrap", "nowrap" ]); for($i=0; $i<@acts; $i++) { local ($boot, %daemon, @levels, $order); foreach $s (@{$actsb[$i]}) { if ($s->[2]) { $boot = 1; push(@levels, &ui_text_color($s->[0], 'warn')); } else { push(@levels, $s->[0]); } } $order = $actsb[$i]->[0]->[1]; local @cols; push(@cols, &ui_link("edit_action.cgi?".$actsl[$i], $acts[$i]) ); local %has; $d = &html_escape(&init_description($actsf[$i], $config{'status_check'} == 2 ? \%has : undef)); if ($config{'desc'} == 2) { push(@cols, join(" ", @levels)); } else { push(@cols,$boot ? &ui_text_color("$text{'yes'}", 'success') : &ui_text_color("$text{'no'}", 'warn')); } if ($config{'order'}) { push(@cols, $order); } if ($config{'status_check'} == 2) { if ($actsl[$i] =~ /^0/ && $has{'status'}) { local $r = &action_running($actsf[$i]); if ($r == 0) { push(@cols, &ui_text_color("$text{'no'}", 'warn')); } elsif ($r == 1) { push(@cols, &ui_text_color("$text{'yes'}", 'success')); } else { push(@cols, undef); } } else { push(@cols, undef); } } push(@cols, $d); if ($actsl[$i] =~ /^0/) { print &ui_checked_columns_row( \@cols, undef, "idx", $order[$i]); } else { print &ui_columns_row([ undef, @cols ]); } } print &ui_columns_end(); print &ui_links_row(\@links); @buts = ( [ "start", $text{'index_start'} ], [ "stop", $text{'index_stop'} ], [ "restart", $text{'index_restart'} ] ); if ($access{'bootup'} == 1) { # Show buttons to enable/disable at boot push(@buts, undef, [ "addboot", $text{'index_addboot'} ], [ "delboot", $text{'index_delboot'} ], undef, [ "addboot_start", $text{'index_addboot_start'} ], [ "delboot_stop", $text{'index_delboot_stop'} ], ); } print &ui_form_end(\@buts); } } elsif ($init_mode eq "local" && $access{'bootup'} == 1) { # Display local bootup script if ($config{'hostconfig'}) { # This means a darwin system where # daemons are not started in the rc script print &text('index_script_mac', "<tt>$config{'local_script'}</tt>"),"<br>\n"; } else { print &text('index_script', "<tt>$config{'local_script'}</tt>"),"<br>\n"; } print &ui_form_start("save_local.cgi", "post"); print &ui_textarea("local", &read_file_contents($config{'local_script'}), 15, 80)."<br>\n"; # Show shutdown script too, if any if ($config{'local_down'}) { print &text('index_downscript', "<tt>$config{'local_down'}</tt>"),"<br>\n"; print &ui_textarea("down", &read_file_contents($config{'local_down'}), 15, 80). "<br>\n"; } print &ui_form_end([ [ undef, $text{'save'} ] ]); } elsif ($init_mode eq "win32" && $access{'bootup'}) { # Show Windows services print &ui_form_start("save_services.cgi", "post"); print &select_all_link("d"),"\n"; print &select_invert_link("d"),"<br>\n"; print &ui_columns_start([ "", $text{'index_sname'}, $text{'index_sdesc'}, $text{'index_sboot'}, $text{'index_sstate'} ]); foreach $svc (&list_win32_services()) { print &ui_columns_row([ &ui_checkbox("d", $svc->{'name'}, undef), $svc->{'name'}, $svc->{'desc'}, $text{'index_sboot'.$svc->{'boot'}} || $svc->{'boot_desc'}, $text{'index_sstate'.$svc->{'state'}} || $svc->{'state_desc'}, ]); } print &ui_columns_end(); print &select_all_link("d"),"\n"; print &select_invert_link("d"),"<br>\n"; print &ui_form_end([ [ "start", $text{'index_start'} ], [ "stop", $text{'index_stop'} ], undef, [ "addboot", $text{'index_addboot'} ], [ "delboot", $text{'index_delboot'} ], undef, [ "addboot_start", $text{'index_addboot_start'} ], [ "delboot_stop", $text{'index_delboot_stop'} ], ]); print &ui_hr(); } elsif ($init_mode eq "rc" && $access{'bootup'}) { # Show FreeBSD scripts print &ui_form_start("mass_rcs.cgi", "post"); @links = ( &select_all_link("d"), &select_invert_link("d"), &ui_link("edit_rc.cgi?new=1", $text{'index_radd'}) ); print &ui_links_row(\@links); print &ui_columns_start([ "", $text{'index_rname'}, $text{'index_rdesc'}, $text{'index_rboot'} ]); foreach $rc (&list_rc_scripts()) { print &ui_columns_row([ &ui_checkbox("d", $rc->{'name'}, undef), &ui_link("edit_rc.cgi?name=".&urlize($rc->{'name'}), $rc->{'name'}), $rc->{'desc'}, $rc->{'enabled'} == 1 ? &ui_text_color("$text{'yes'}", 'success') : $rc->{'enabled'} == 2 ? "<i>$text{'index_unknown'}</i>": &ui_text_color("$text{'no'}", 'warn'), ]); } print &ui_columns_end(); print &ui_links_row(\@links); print &ui_form_end([ [ "start", $text{'index_start'} ], [ "stop", $text{'index_stop'} ], undef, [ "addboot", $text{'index_addboot'} ], [ "delboot", $text{'index_delboot'} ], undef, [ "addboot_start", $text{'index_addboot_start'} ], [ "delboot_stop", $text{'index_delboot_stop'} ], ]); } elsif ($init_mode eq "upstart" && $access{'bootup'}) { # Show upstart actions print &ui_form_start("mass_upstarts.cgi", "post"); @links = ( &select_all_link("d"), &select_invert_link("d"), &ui_link("edit_upstart.cgi?new=1", $text{'index_uadd'}) ); print &ui_links_row(\@links); print &ui_columns_start([ "", $text{'index_uname'}, $text{'index_udesc'}, $text{'index_uboot'}, $text{'index_ustatus'}, ]); foreach $u (&list_upstart_services()) { if ($u->{'legacy'}) { $l = "edit_action.cgi?0+".&urlize($u->{'name'}); } else { $l = "edit_upstart.cgi?name=".&urlize($u->{'name'}); } print &ui_columns_row([ &ui_checkbox("d", $u->{'name'}, undef, 0), &ui_link($l, $u->{'name'}), $u->{'desc'}, $u->{'boot'} eq 'start' ? &ui_text_color("$text{'yes'}", 'success') : $u->{'boot'} eq 'stop' ? &ui_text_color("$text{'no'}", 'warn') : "<i>$text{'index_unknown'}</i>", $u->{'status'} eq 'running' ? &ui_text_color("$text{'yes'}", 'success') : $u->{'status'} eq 'waiting' ? &ui_text_color("$text{'no'}", 'warn') : "<i>$text{'index_unknown'}</i>", ]); } print &ui_columns_end(); print &ui_links_row(\@links); print &ui_form_end([ [ "start", $text{'index_start'} ], [ "stop", $text{'index_stop'} ], [ "restart", $text{'index_restart'} ], undef, [ "addboot", $text{'index_addboot'} ], [ "delboot", $text{'index_delboot'} ], undef, [ "addboot_start", $text{'index_addboot_start'} ], [ "delboot_stop", $text{'index_delboot_stop'} ], ]); } elsif ($init_mode eq "systemd" && $access{'bootup'}) { # Show systemd actions print &ui_form_start("mass_systemd.cgi", "post"); @links = ( &select_all_link("d"), &select_invert_link("d"), &ui_link("edit_systemd.cgi?new=1", $text{'index_sadd'}) ); print &ui_links_row(\@links); print &ui_columns_start([ "", $text{'index_uname'}, $text{'index_udesc'}, $text{'index_ucstatus'}, $text{'index_uboot'}, $text{'index_ustatus'}, ]); foreach $u (&list_systemd_services()) { if ($u->{'legacy'}) { $l = "edit_action.cgi?0+".&urlize($u->{'name'}); } else { $l = "edit_systemd.cgi?name=".&urlize($u->{'name'}); } print &ui_columns_row([ &ui_checkbox("d", $u->{'name'}, undef), $u->{'boot'} == -1 ? &html_escape($u->{'name'}) : &ui_link($l, $u->{'name'}), $u->{'desc'}, $u->{'fullstatus'} || "<i>$text{'index_unknown'}</i>", $u->{'boot'} == 1 ? &ui_text_color("$text{'yes'}", 'success') : $u->{'boot'} == 2 ? &ui_text_color("$text{'index_sboot6'}", 'success') : $u->{'boot'} == -1 ? &ui_text_color("$text{'index_sboot5'}", 'warn') : &ui_text_color("$text{'no'}", 'warn'), $u->{'status'} == 1 ? &ui_text_color("$text{'yes'}", 'success') : $u->{'status'} == 0 ? &ui_text_color("$text{'no'}", 'warn') : "<i>$text{'index_unknown'}</i>", ]); } print &ui_columns_end(); print &ui_links_row(\@links); print &ui_form_end([ [ "start", $text{'index_start'} ], [ "stop", $text{'index_stop'} ], [ "restart", $text{'index_restart'} ], undef, [ "addboot", $text{'index_addboot'} ], [ "delboot", $text{'index_delboot'} ], undef, [ "addboot_start", $text{'index_addboot_start'} ], [ "delboot_stop", $text{'index_delboot_stop'} ], ]); } elsif ($init_mode eq "launchd" && $access{'bootup'}) { # Show launchd agents print &ui_form_start("mass_launchd.cgi", "post"); @links = ( &select_all_link("d"), &select_invert_link("d"), &ui_link("edit_launchd.cgi?new=1", $text{'index_ladd'}) ); print &ui_links_row(\@links); print &ui_columns_start([ "", $text{'index_lname'}, $text{'index_uboot'}, $text{'index_ustatus'}, ]); foreach $u (&list_launchd_agents()) { $l = "edit_launchd.cgi?name=".&urlize($u->{'name'}); print &ui_columns_row([ &ui_checkbox("d", $u->{'name'}, undef), &ui_link($l, $u->{'name'}), $u->{'boot'} ? &ui_text_color("$text{'yes'}", 'success') : &ui_text_color("$text{'no'}", 'warn'), $u->{'status'} ? &ui_text_color("$text{'yes'}", 'success') : &ui_text_color("$text{'no'}", 'warn'), ]); } print &ui_columns_end(); print &ui_links_row(\@links); print &ui_form_end([ [ "start", $text{'index_start'} ], [ "stop", $text{'index_stop'} ], [ "restart", $text{'index_restart'} ], undef, [ "addboot", $text{'index_addboot'} ], [ "delboot", $text{'index_delboot'} ], undef, [ "addboot_start", $text{'index_addboot_start'} ], [ "delboot_stop", $text{'index_delboot_stop'} ], ]); } # reboot/shutdown buttons print &ui_hr(); print &ui_buttons_start(); if ($init_mode eq 'init' && $access{'bootup'} == 1) { print &ui_buttons_row("change_rl.cgi", $text{'index_rlchange'}, $text{'index_rlchangedesc'}, undef, &ui_select("level", $boot[0], \@runlevels)); } if ($access{'reboot'}) { print &ui_buttons_row("reboot.cgi", $text{'index_reboot'}, $text{'index_rebootmsg'}); } if ($access{'shutdown'}) { print &ui_buttons_row("shutdown.cgi", $text{'index_shutdown'}, $text{'index_shutdownmsg'}); } print &ui_buttons_end(); &ui_print_footer("/", $text{'index'});
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
help | Folder | 0755 |
|
|
images | Folder | 0755 |
|
|
lang | Folder | 0755 |
|
|
CHANGELOG | File | 1.8 KB | 0644 |
|
acl_security.pl | File | 869 B | 0755 |
|
atboot.pl | File | 5.66 KB | 0755 |
|
backup_config.pl | File | 975 B | 0755 |
|
cgi_args.pl | File | 668 B | 0755 |
|
change_rl.cgi | File | 486 B | 0755 |
|
config-aix | File | 204 B | 0644 |
|
config-cobalt-linux-2.2-4.0 | File | 242 B | 0644 |
|
config-cobalt-linux-5.0-ALL | File | 257 B | 0644 |
|
config-coherent-linux | File | 277 B | 0644 |
|
config-corel-linux | File | 179 B | 0644 |
|
config-debian-linux | File | 195 B | 0644 |
|
config-freebsd | File | 154 B | 0644 |
|
config-freebsd-5.0-ALL | File | 251 B | 0644 |
|
config-generic-linux | File | 238 B | 0644 |
|
config-gentoo-linux | File | 166 B | 0644 |
|
config-hpux | File | 233 B | 0644 |
|
config-irix | File | 186 B | 0644 |
|
config-macos | File | 267 B | 0644 |
|
config-mandrake-linux | File | 277 B | 0644 |
|
config-msc-linux | File | 272 B | 0644 |
|
config-netbsd | File | 106 B | 0644 |
|
config-open-linux | File | 208 B | 0644 |
|
config-openSUSE-Linux-15.0-ALL | File | 236 B | 0644 |
|
config-openbsd | File | 106 B | 0644 |
|
config-openmamba-linux | File | 277 B | 0644 |
|
config-openserver | File | 208 B | 0644 |
|
config-osf1 | File | 214 B | 0644 |
|
config-pardus-linux | File | 238 B | 0644 |
|
config-redhat-linux | File | 277 B | 0644 |
|
config-slackware-linux | File | 129 B | 0644 |
|
config-solaris | File | 195 B | 0644 |
|
config-solaris-10-ALL | File | 225 B | 0644 |
|
config-suse-linux | File | 187 B | 0644 |
|
config-suse-linux-7.1-ALL | File | 236 B | 0644 |
|
config-syno-linux | File | 247 B | 0644 |
|
config-trustix-linux | File | 262 B | 0644 |
|
config-turbo-linux | File | 257 B | 0644 |
|
config-united-linux | File | 197 B | 0644 |
|
config-unixware | File | 178 B | 0644 |
|
config-windows | File | 115 B | 0644 |
|
config.info | File | 1.31 KB | 0644 |
|
config.info.ca | File | 1.54 KB | 0644 |
|
config.info.cs | File | 1.27 KB | 0644 |
|
config.info.de | File | 1.46 KB | 0644 |
|
config.info.es | File | 1.31 KB | 0644 |
|
config.info.eu | File | 1.35 KB | 0644 |
|
config.info.fa | File | 1.78 KB | 0644 |
|
config.info.fr | File | 1.18 KB | 0644 |
|
config.info.hu | File | 0 B | 0644 |
|
config.info.ja | File | 1.57 KB | 0644 |
|
config.info.ko | File | 1.19 KB | 0644 |
|
config.info.nl | File | 1.25 KB | 0644 |
|
config.info.no | File | 1.41 KB | 0644 |
|
config.info.pl | File | 1.22 KB | 0644 |
|
config.info.ru | File | 2.05 KB | 0644 |
|
config.info.sk | File | 0 B | 0644 |
|
config.info.sv | File | 549 B | 0644 |
|
config.info.tr | File | 515 B | 0644 |
|
config.info.uk | File | 1.45 KB | 0644 |
|
config.info.zh | File | 388 B | 0644 |
|
config.info.zh_TW | File | 727 B | 0644 |
|
create-boot.pl | File | 424 B | 0755 |
|
defaultacl | File | 40 B | 0644 |
|
delboot.pl | File | 688 B | 0755 |
|
delete-boot.pl | File | 379 B | 0755 |
|
delete_action.cgi | File | 907 B | 0755 |
|
edit_action.cgi | File | 5.12 KB | 0755 |
|
edit_hostconfig.cgi | File | 6.2 KB | 0755 |
|
edit_launchd.cgi | File | 2.05 KB | 0755 |
|
edit_rc.cgi | File | 1.84 KB | 0755 |
|
edit_systemd.cgi | File | 2.4 KB | 0755 |
|
edit_upstart.cgi | File | 2.3 KB | 0755 |
|
fix_action.cgi | File | 600 B | 0755 |
|
hostconfig-lib.pl | File | 8.53 KB | 0755 |
|
index.cgi | File | 13.7 KB | 0755 |
|
init-lib.pl | File | 68 KB | 0644 |
|
log_parser.pl | File | 1.37 KB | 0755 |
|
mass_launchd.cgi | File | 1.94 KB | 0755 |
|
mass_rcs.cgi | File | 1.54 KB | 0755 |
|
mass_start_stop.cgi | File | 2.81 KB | 0755 |
|
mass_systemd.cgi | File | 2.68 KB | 0755 |
|
mass_upstarts.cgi | File | 1.94 KB | 0755 |
|
modifyhostconfig.cgi | File | 1.07 KB | 0755 |
|
module.info | File | 305 B | 0644 |
|
module.info.af | File | 0 B | 0644 |
|
module.info.af.auto | File | 156 B | 0644 |
|
module.info.ar | File | 0 B | 0644 |
|
module.info.ar.auto | File | 207 B | 0644 |
|
module.info.be | File | 0 B | 0644 |
|
module.info.be.auto | File | 246 B | 0644 |
|
module.info.bg | File | 0 B | 0644 |
|
module.info.bg.auto | File | 253 B | 0644 |
|
module.info.ca | File | 0 B | 0644 |
|
module.info.ca.auto | File | 174 B | 0644 |
|
module.info.cs | File | 0 B | 0644 |
|
module.info.cs.auto | File | 168 B | 0644 |
|
module.info.da | File | 0 B | 0644 |
|
module.info.da.auto | File | 150 B | 0644 |
|
module.info.de | File | 0 B | 0644 |
|
module.info.de.auto | File | 148 B | 0644 |
|
module.info.el | File | 0 B | 0644 |
|
module.info.el.auto | File | 277 B | 0644 |
|
module.info.es | File | 0 B | 0644 |
|
module.info.es.auto | File | 173 B | 0644 |
|
module.info.eu | File | 0 B | 0644 |
|
module.info.eu.auto | File | 142 B | 0644 |
|
module.info.fa | File | 0 B | 0644 |
|
module.info.fa.auto | File | 201 B | 0644 |
|
module.info.fi | File | 0 B | 0644 |
|
module.info.fi.auto | File | 177 B | 0644 |
|
module.info.fr | File | 0 B | 0644 |
|
module.info.fr.auto | File | 169 B | 0644 |
|
module.info.he | File | 0 B | 0644 |
|
module.info.he.auto | File | 171 B | 0644 |
|
module.info.hr | File | 0 B | 0644 |
|
module.info.hr.auto | File | 158 B | 0644 |
|
module.info.hu | File | 0 B | 0644 |
|
module.info.hu.auto | File | 184 B | 0644 |
|
module.info.it | File | 0 B | 0644 |
|
module.info.it.auto | File | 139 B | 0644 |
|
module.info.ja | File | 0 B | 0644 |
|
module.info.ja.auto | File | 202 B | 0644 |
|
module.info.ko | File | 0 B | 0644 |
|
module.info.ko.auto | File | 156 B | 0644 |
|
module.info.lt | File | 0 B | 0644 |
|
module.info.lt.auto | File | 172 B | 0644 |
|
module.info.lv | File | 0 B | 0644 |
|
module.info.lv.auto | File | 177 B | 0644 |
|
module.info.ms | File | 0 B | 0644 |
|
module.info.ms.auto | File | 142 B | 0644 |
|
module.info.mt | File | 0 B | 0644 |
|
module.info.mt.auto | File | 141 B | 0644 |
|
module.info.nl | File | 0 B | 0644 |
|
module.info.nl.auto | File | 160 B | 0644 |
|
module.info.no | File | 0 B | 0644 |
|
module.info.no.auto | File | 148 B | 0644 |
|
module.info.pl | File | 0 B | 0644 |
|
module.info.pl.auto | File | 163 B | 0644 |
|
module.info.pt | File | 0 B | 0644 |
|
module.info.pt.auto | File | 199 B | 0644 |
|
module.info.pt_BR | File | 0 B | 0644 |
|
module.info.pt_BR.auto | File | 208 B | 0644 |
|
module.info.ro | File | 0 B | 0644 |
|
module.info.ro.auto | File | 176 B | 0644 |
|
module.info.ru | File | 0 B | 0644 |
|
module.info.ru.auto | File | 249 B | 0644 |
|
module.info.sk | File | 0 B | 0644 |
|
module.info.sk.auto | File | 172 B | 0644 |
|
module.info.sl | File | 0 B | 0644 |
|
module.info.sl.auto | File | 158 B | 0644 |
|
module.info.sv | File | 0 B | 0644 |
|
module.info.sv.auto | File | 154 B | 0644 |
|
module.info.th | File | 0 B | 0644 |
|
module.info.th.auto | File | 270 B | 0644 |
|
module.info.tr | File | 0 B | 0644 |
|
module.info.tr.auto | File | 218 B | 0644 |
|
module.info.uk | File | 0 B | 0644 |
|
module.info.uk.auto | File | 283 B | 0644 |
|
module.info.ur | File | 0 B | 0644 |
|
module.info.ur.auto | File | 200 B | 0644 |
|
module.info.vi | File | 0 B | 0644 |
|
module.info.vi.auto | File | 195 B | 0644 |
|
module.info.zh | File | 0 B | 0644 |
|
module.info.zh.auto | File | 140 B | 0644 |
|
module.info.zh_TW | File | 0 B | 0644 |
|
module.info.zh_TW.auto | File | 149 B | 0644 |
|
prefs.info | File | 55 B | 0644 |
|
rbac-mapping | File | 80 B | 0644 |
|
reboot.cgi | File | 725 B | 0755 |
|
save_action.cgi | File | 6.37 KB | 0755 |
|
save_hostconfig_action.cgi | File | 4.63 KB | 0755 |
|
save_launchd.cgi | File | 1.72 KB | 0755 |
|
save_local.cgi | File | 706 B | 0755 |
|
save_rc.cgi | File | 2.48 KB | 0755 |
|
save_services.cgi | File | 1.44 KB | 0755 |
|
save_startscript.cgi | File | 1.9 KB | 0755 |
|
save_systemd.cgi | File | 2.03 KB | 0755 |
|
save_upstart.cgi | File | 2.15 KB | 0755 |
|
shutdown.cgi | File | 591 B | 0755 |
|
start_stop.cgi | File | 890 B | 0755 |
|
syslog_logs.pl | File | 350 B | 0755 |
|
uninstall.pl | File | 1.91 KB | 0755 |
|
updateboot.pl | File | 936 B | 0755 |
|
win32.pl | File | 1.93 KB | 0755 |
|