Skip to content
Snippets Groups Projects
Commit 0b14921f authored by Bob Mottram's avatar Bob Mottram
Browse files

Comments

parent 9aca8dcc
No related branches found
No related tags found
No related merge requests found
<?php
// This is used to begin installing an app.
//
// It creates the confirm screen, populates the variables
// in it and then opens it.
$output_filename = "apps_add.html";
if (isset($_POST['install'])) {
......
<?php
// This receives the yes/no confirmation when installing
// an app and then begins the install
//
// Apps are installed by adding them to the pending_installs.txt
// file and the webadmin daemon (freedombone-installer) then
// does the actual installation in the background
$output_filename = "apps_add.html";
if (isset($_POST['installconfirmsubmit'])) {
......
<?php
// From the initial setup screen when the box is first booted
// this stores the preferred username within a temporary
// version of setup.txt, which will later be used by the webadmin
// daemon (freedombone-installer)
$output_filename = "index.html";
if (isset($_POST['setup'])) {
......
<?php
// This receives the yes/no confirmation on initial setup
// of the system and creates the setup.txt file which is
// then detected by the webadmin daemon (freedombone-installer)
$output_filename = "index.html";
if (isset($_POST['setupconfirmsubmit'])) {
......
<?php
// For clearnet setup this receives the preferred domain name
// and then begins the install by creating the setup.txt file
// which is detected by the webadmin daemon (freedombone-installer)
$output_filename = "index.html";
if (isset($_POST['setupdomain'])) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment