#!/usr/bin/perl
#------------------------------------------------------------
#This action starts the Samba LDAP service on the loopback 
#network for the bootstrap-console-save and post-install
#
#
#Copyright 2016 Koozali Foundation, Inc.
#08/16/2016: G.Zartman <gzartman@koozali.org>
#
#The code contained herein can be distributed under the same
#license as Perl
#
#TO DO:
#
#------------------------------------------------------------
package esmith::thisaction;

use strict;
use warnings;

##Pull arguments
my $event = $ARGV [0];

##Stop Samba LDAP
system ("killall samba");

##Stop loopback network
system ("/sbin/ifdown lo");

1;

