blob: 8f3088a1e2dbb2e5e9c63ccc36c37eb843470669 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env python
# Solaris 11 IPS
# Automate package creation
from pprint import pprint
import ips
testfile = "test.ips"
build = ips.build.Build(testfile)
#build.show_summary()
#build.source_unpack()
build.controller.do_tasks()
print("I made it to the end")
|