X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=XTesting%2Fpowder-profiles%2Fubuntu-20;fp=XTesting%2Fpowder-profiles%2Fubuntu-20;h=6f87865aa6395b9c1d9076958680f6d6b60cb3e4;hb=9901302381b93bc7756d914465d6b11d95ef37f2;hp=0000000000000000000000000000000000000000;hpb=041f33871b8a86335388a76914844316cfbff998;p=it%2Ftest.git diff --git a/XTesting/powder-profiles/ubuntu-20 b/XTesting/powder-profiles/ubuntu-20 new file mode 100644 index 0000000..6f87865 --- /dev/null +++ b/XTesting/powder-profiles/ubuntu-20 @@ -0,0 +1,22 @@ +"""Ubuntu 20.04 on a hardware type of your choice.""" + +import geni.portal as portal +# Import the ProtoGENI library. +import geni.rspec.pg as rspec + +pc = portal.Context() + +pc.defineParameter('hardware_type', 'Hardware type', portal.ParameterType.NODETYPE, '') + +params = pc.bindParameters() + +request = pc.makeRequestRSpec() + +node = request.RawPC('node-0') +node.hardware_type = params.hardware_type +node.disk_image = 'urn:publicid:IDN+emulab.net+image+emulab-ops//UBUNTU20-64-STD' + +# manipulate the authorized key for root access +node.addService(rspec.Execute(shell="bash", command="sudo chown osc_int -R /root && tail -1 ~/.ssh/authorized_keys >> /root/.ssh/authorized_keys && rm /root/.ssh/id_rsa* && sudo chown root -R /root")) + +pc.printRequestRSpec(request)