1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 | export JUJU_REPOSITORY="$HOME/charms" mkdir -p $JUJU_REPOSITORY/vivid cd $JUJU_REPOSITORY/vivid # You can... juju charm create -t bash mytestcharm # Or juju charm get <charm name> # IF you're just testing something simple, this is the most simple charm we have juju charm get ubuntu # Then deploy juju deploy --repository $JUJU_REPOSITORY local:vivid/ubuntu # Or vivid/mytestcharm, etc |