Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

  • NullReferenceException on Plan Edit

    Support otter
    3
    0 Votes
    3 Posts
    8 Views
    ?
    I cheated and did it in SQL, been digging a little bit into your database anyways. DECLARE @DefaultRaftId INT SELECT TOP 1 @DefaultRaftId = Raft_Id FROM Rafts WHERE Raft_Name = 'Default' UPDATE [Servers] SET Raft_Id = @DefaultRaftId UPDATE [ServerRoles] SET Raft_Id = @DefaultRaftId
  • Otter ProGe::ensure- package throws error

    Support proget otter
    3
    0 Votes
    3 Posts
    7 Views
    ?
    Thank you Alana, this makes sense. I was trying to use a NuGet feed type. This answers my question.
  • Git Raft crashing Otter Service

    Support otter
    9
    0 Votes
    9 Posts
    5 Views
    ?
    In case you didn't see the email, we were able to reproduce this with your repository and will be fixing this in the next maintenance release! Thanks
  • 0 Votes
    4 Posts
    3 Views
    ?
    This is, unfortunately, a new glitch related to the call template statement in the visual editor. We'll be fixing it in next maintenance release. FWIW - we're also looking to add a "undo" mechanic that should, at the very least, allow for recovery to previous states when the visual editor creates an invalid model of a plan/OtterScript.
  • Sample for EnsureOperation

    Support otter
    2
    0 Votes
    2 Posts
    2 Views
    ?
    I'm afraid the Ensure operations are a bit trickier to write, mostly because they require the definition of a configuration template... The EnsureOperation<TConfig> class is designed to help make it simpler to write these... but we don't have a tutorial for those just yet. In the mean time, I've emailed you the source code of all of the built-in Operations and Configurations, so I hope that might be of some assistance.
  • Templates with Output Variables

    Support otter
    2
    0 Votes
    2 Posts
    8 Views
    ?
    Thanks, we've identified this as a bug with template variable processing, and will have this fixed in the next version of Otter (coming in a day or two).
  • Call Template saves empty values, breaking default values

    Support otter
    2
    0 Votes
    2 Posts
    2 Views
    ?
    We'll be fixing some of the bugs in the visual editor with regards to template arguments in a future maintenance release (hopefully 1.1.3); we've already made the changes in BuildMaster v5's editor, just need to bring them over.
  • Unable to save Template Arguments

    Support otter
    2
    0 Votes
    2 Posts
    2 Views
    ?
    This appears to be a bug in the visual editor regarding templates... but if you switch to text-mode it should work. template my_template<$arg1,@arg2,out $arg3>{ ... blocks and content here ... }
  • Questions relating to Powershell and chocolatey

    Support nuget otter proget
    4
    0 Votes
    4 Posts
    22 Views
    ?
    Hmm, I wonder if it's related to Powershell Execution Policy? I'm not terribly familiar myself, but I know I've had to fiddle with that a bit to get things working... 15 Ways to Bypass the PowerShell Execution Policy
  • Variable scopes

    Support otter variables
    4
    0 Votes
    4 Posts
    1 Views
    ?
    The easiest workaround is to declare the variable at the top of your plan. set @WebServerFeatures = @(...) Otherwise we will get this shipped by end of day!
  • Otter API

    Support otter api
    2
    0 Votes
    2 Posts
    5 Views
    ?
    Yes; the JSON-based REST API allows you to do everything you can from the website, and there's also a simplified job trigger endpoint, where you can do something like POST /api/jobs/trigger/mytemplatname?key=secret123 to trigger a new job. These particular bits aren't fully documented (or implemented in current the v1.0 release) yet, but will be in just a day or so.
  • 0 Votes
    2 Posts
    9 Views
    ?
    FYI one of our developers posted an answer on the linked question.
  • Do you provide reseller discount?

    Support licensing proget otter buildmaster
    2
    0 Votes
    2 Posts
    3 Views
    ?
    Although we do not provide a reseller discount, we do work with quite a few software resellers who purchase on behalf of their clients, as those clients prefer to have a single source for all procurement. If, as a reseller, you purchase directly from the MyInedo portal, just contact us with the end-user information, and we will update the licensing information. You can also submit a quote request as needed.
  • 0 Votes
    4 Posts
    9 Views
    ?
    Ah, yes... definitely a bug. Seems to be related to some unanticipated changes in the latest WMF preview, but easy for us to fix. Can you please try upgrading to v1.0.3? Also please note that, due to a bug in the latest WMF5, it now appears you may need to specify a module name for some non-built in resources; it's supposed to be optional, and search all installed modules if not specified. We don't know when Microsoft will fix this, but the work-around is fairly simple: PSDsc xWebAdministration::xWebAppPool ( Name: AccountsAppPool, Ensure: present );