Jump to content

Simple Provisioning Module Suspend/Unsuspend


webbytech

Recommended Posts

We are working on a simple module (or in my mind simple)

The following works in a standard php script so im not sure why the 2nd set of code doesn't work in WHMCS
Works in a regular PHP:
$vlan = "999";
$config1 = "set interfaces irb." . $vlan . " disable";
exec("ssh automation@xxx.xxx.xxx.xxx 'configure; $config1; commit; exit; exit;'");

Does not work in WHMCS module
function modulename_SuspendAccount($params) {

    $vlan = $params[‘customfields’]['VLAN'];
    $config1 = "set interfaces irb." . $vlan . " disable";
    exec("ssh automation@xxx.xxx.xxx.xxx 'configure; $config1; commit; exit; exit;'");
    $successful = '1';
    if ($successful == 1) {
        $result = 'success';
    } else {

    $result = 'Error: ' . $error;
    }
    return $result;
}

Anyone have any ideas why the WHMCS pieces doesn't work?

Edited by webbytech
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated