mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +00:00 
			
		
		
		
	Added prompt to install raspap.service
This commit is contained in:
		@@ -222,11 +222,15 @@ function default_configuration() {
 | 
			
		||||
    sudo systemctl daemon-reload
 | 
			
		||||
 | 
			
		||||
    # Install and enable RaspAP daemon
 | 
			
		||||
    echo -n "Enable RaspAP control service (Recommended)? [Y/n]: "
 | 
			
		||||
    read answer
 | 
			
		||||
    if [ "$answer" != 'n' ] && [ "$answer" != 'N' ]; then
 | 
			
		||||
        echo -n "Enabling RaspAP daemon. Disable with: sudo systemctl disable raspap.service"
 | 
			
		||||
        sudo mv $webroot_dir/installers/raspap.service /lib/systemd/system/ || install_error "Unable to move raspap.service file"
 | 
			
		||||
    #sudo systemctl enable raspap.service
 | 
			
		||||
        sudo systemctl enable raspap.service || install_error "Failed to enable raspap.service"
 | 
			
		||||
    fi
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# Add a single entry to the sudoers file
 | 
			
		||||
function sudo_add() {
 | 
			
		||||
    sudo bash -c "echo \"www-data ALL=(ALL) NOPASSWD:$1\" | (EDITOR=\"tee -a\" visudo)" \
 | 
			
		||||
@@ -312,7 +316,7 @@ function optimize_php() {
 | 
			
		||||
    fi
 | 
			
		||||
 | 
			
		||||
    if [ "$php_package" = "php7.0-cgi" ]; then
 | 
			
		||||
        echo -n "Enable PHP OPCache? [Y/n]: "
 | 
			
		||||
        echo -n "Enable PHP OPCache (Recommended)? [Y/n]: "
 | 
			
		||||
        read answer
 | 
			
		||||
        if [ "$answer" != 'n' ] && [ "$answer" != 'N' ]; then
 | 
			
		||||
            echo "Php-cgi enabling opcache.enable."
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user