Joey Hess
d51863e698
propellor spin
2015-03-12 17:15:01 -04:00
Joey Hess
16c9717a8d
propellor spin
2015-03-12 17:13:37 -04:00
Joey Hess
4cf549414b
propellor spin
2015-03-12 17:06:47 -04:00
Joey Hess
677ce2d28f
propellor spin
2015-03-12 16:46:52 -04:00
Joey Hess
82e8311fc5
propellor spin
2015-03-12 16:43:09 -04:00
Joey Hess
6d978d71ea
propellor spin
2015-03-12 16:38:47 -04:00
Joey Hess
ec1e16a9f3
propellor spin
2015-03-12 16:38:29 -04:00
Joey Hess
f2750857b8
propellor spin
2015-03-12 16:34:44 -04:00
Joey Hess
1196bffdb5
propellor spin
2015-03-12 16:23:45 -04:00
Joey Hess
b3f231c750
propellor spin
2015-03-12 16:12:36 -04:00
Joey Hess
febe818cb1
propellor spin
2015-03-11 23:07:41 -04:00
Joey Hess
17dde04739
propellor spin
2015-03-11 22:58:05 -04:00
Joey Hess
294f61b2b1
propellor spin
2015-03-11 22:53:37 -04:00
Joey Hess
c8ea87877e
propellor spin
2015-03-11 22:47:39 -04:00
Joey Hess
a82b7d3e00
propellor spin
2015-03-11 22:38:15 -04:00
Joey Hess
d9d5bf6d44
propellor spin
2015-03-11 22:34:10 -04:00
Joey Hess
b508bb52fd
propellor spin
2015-03-11 22:31:45 -04:00
Joey Hess
971d688a72
propellor spin
2015-03-11 22:24:09 -04:00
Joey Hess
bd8efb76a3
propellor spin
2015-03-11 22:18:50 -04:00
Joey Hess
09435e9bcc
propellor spin
2015-03-11 22:06:08 -04:00
Joey Hess
164f78ca05
propellor spin
2015-03-06 15:40:38 -04:00
Joey Hess
5b56a416c1
endpoint
2015-02-19 18:40:50 -04:00
Joey Hess
fac02a6a82
propellor spin
2015-02-13 15:59:50 -04:00
Joey Hess
da77276378
ssh user perm fixes
...
* Ssh.authorizedKey: Make the authorized_keys file and .ssh directory
be owned by the user, not root.
* Ssh.knownHost: Make the .ssh directory be owned by the user, not root.
2015-02-12 12:35:15 -04:00
Joey Hess
ca2640d037
propellor spin
2015-02-10 22:31:00 -04:00
Joey Hess
8f813dc875
propellor spin
2015-02-10 21:46:31 -04:00
Joey Hess
f5c82083fe
propellor spin
2015-02-10 21:39:16 -04:00
Joey Hess
b2dccb5fb5
propellor spin
2015-02-10 21:21:51 -04:00
Joey Hess
920b7bf56d
propellor spin
2015-02-10 21:18:41 -04:00
Joey Hess
8d73419dbe
propellor spin
2015-02-10 21:01:38 -04:00
Joey Hess
5ae2a1dc3c
propellor spin
2015-02-10 20:58:47 -04:00
Joey Hess
0119bf8531
propellor spin
2015-02-10 20:56:57 -04:00
Joey Hess
d08c98d8b3
propellor spin
2015-02-10 20:29:04 -04:00
Joey Hess
824ebdd76f
propellor spin
2015-02-10 19:57:18 -04:00
Joey Hess
057509c5cd
propellor spin
2015-02-10 15:09:57 -04:00
Joey Hess
991249185c
propellor spin
2015-02-09 18:51:07 -04:00
Joey Hess
8edc7ed3ae
propellor spin
2015-02-01 17:34:04 -04:00
Joey Hess
30c8621f5c
propellor spin
2015-02-01 17:01:32 -04:00
Joey Hess
2e2e30fc39
propellor spin
2015-02-01 16:58:32 -04:00
Joey Hess
b3bdb95ed0
propellor spin
2015-02-01 16:51:55 -04:00
Joey Hess
8ff2b77385
propellor spin
2015-02-01 16:40:03 -04:00
Joey Hess
0ea9794324
propellor spin
2015-02-01 15:08:30 -04:00
Joey Hess
bcdc5754fc
propellor spin
2015-02-01 14:48:13 -04:00
Joey Hess
f276466cf2
propellor spin
2015-02-01 13:36:58 -04:00
Joey Hess
1b7a00372b
propellor spin
2015-02-01 13:14:45 -04:00
Joey Hess
0ee04ecc43
GADT properties seem to work (untested)
...
* Property has been converted to a GADT, and will be Property NoInfo
or Property HasInfo.
This was done to make sure that ensureProperty is only used on
properties that do not have Info.
Transition guide:
- Change all "Property" to "Property NoInfo" or "Property WithInfo"
(The compiler can tell you if you got it wrong!)
- To construct a RevertableProperty, it is useful to use the new
(<!>) operator
- Constructing a list of properties can be problimatic, since
Property NoInto and Property WithInfo are different types and cannot
appear in the same list. To deal with this, "props" has been added,
and can built up a list of properties of different types,
using the same (&) and (!) operators that are used to build
up a host's properties.
2015-01-24 22:38:51 -04:00
Joey Hess
afee550e70
Property tree
...
Properties now form a tree, instead of the flat list used before.
This simplifies propigation of Info from the Properties used inside a
container to the outer host; the Property that docks the container on the
host can just have as child properties all the inner Properties, and their
Info can then be gathered recursively. (Although in practice it still needs
to be filtered, since not all Info should propigate out of a container.)
Note that there is no change to how Properties are actually satisfied.
Just because a Property lists some child properties, this does not mean
they always have their propertySatisfy actions run. It's still up to the
parent property to run those actions.
That's necessary so that a container's properties can be satisfied inside
it, not outside. It also allows property combinators to
add the combined Properties to their childProperties list, even if,
like onChange, they don't always run the child properties at all.
Testing: I tested that the exact same Info is calculated before and after
this change, for every Host in my config file.
2015-01-18 18:46:38 -04:00
Joey Hess
042b3bee01
propellor spin
2015-01-09 21:21:06 -04:00
Joey Hess
2e2f8b4fdd
propellor spin
2015-01-08 23:08:16 -04:00
Joey Hess
5585778e54
propellor spin
2015-01-08 23:02:06 -04:00
Joey Hess
8e6e40abc4
propellor spin
2015-01-08 22:44:36 -04:00
Joey Hess
ad8e318c34
propellor spin
2015-01-08 22:01:12 -04:00
Joey Hess
660b5d7f93
propellor spin
2015-01-08 21:41:55 -04:00
Joey Hess
dd022c917b
propellor spin
2015-01-08 21:17:06 -04:00
Joey Hess
16a5f561f5
Merge Utiity modules from git-annex.
...
Except for a few that are using the other exception handling library,
that propellor has not switched to yet.
2015-01-06 19:07:40 -04:00
Joey Hess
f4a57ca27d
refactor dns settings!
2015-01-06 01:20:56 -04:00
Joey Hess
ff7f70d280
add update-server-info, so the repo has all current branches published over http
2015-01-06 01:00:48 -04:00
Joey Hess
c7aac0b35e
remove screen workaround
...
Turns out elephant's oldusenet shellbox docker instance somehow had a
non-setguid screen binary. Dunno how; reinstall fixed it.
2014-12-23 15:45:35 -04:00
Joey Hess
35ccb0fac6
fix screen dir mode
2014-12-23 15:29:23 -04:00
Joey Hess
a48f5916e1
propellor spin
2014-12-23 14:22:50 -04:00
Joey Hess
b8be8c244e
propellor spin
2014-12-22 17:16:52 -04:00
Joey Hess
26a4c164e4
gitriddance
2014-12-22 15:05:05 -04:00
Joey Hess
f78c2f16d1
update name of libgnutls dev package
2014-12-03 19:05:36 -04:00
Joey Hess
d49d251897
separate docker container type
...
Docker containers are now a separate data type, cannot be included in the
main host list, and are instead passed to Docker.docked. (API change)
2014-11-19 23:11:34 -04:00
Joey Hess
111e08e156
typo
2014-11-18 23:54:49 -04:00
Joey Hess
8d91b5de6b
Convert GpgKeyId to newtype
2014-11-15 17:02:30 -04:00
Joey Hess
d65337d3e7
add Obnam backupEncrypted
...
This after I typoed an obnam setup and accidentially had a repo that was
backing up non-encrypted.
2014-11-15 13:42:04 -04:00
Joey Hess
2b320d2bd9
propellor spin
2014-10-23 13:26:51 -04:00
Joey Hess
0f1fcc24f8
propellor spin
2014-10-16 17:02:16 -04:00
Joey Hess
8a6da9ff73
full auto baybee!
2014-10-16 12:13:55 -04:00
Joey Hess
bf238a34ee
propellor spin
2014-10-15 00:49:39 -04:00
Joey Hess
158cbd0fbf
android chroot switched to jessie
2014-10-14 19:22:01 -04:00
Joey Hess
6673b6014f
propellor spin
2014-10-13 15:05:18 -04:00
Joey Hess
79ee61d958
stable suite changes
...
* Avoid encoding the current stable suite in propellor's code,
since that poses a difficult transition around the release,
and can easily be wrong if an older version of propellor is used.
Instead, the os property for a stable system includes the suite name
to use, eg Stable "wheezy".
* stdSourcesList uses the stable suite name, to avoid unwanted
immediate upgrades to the next stable release.
2014-10-10 11:27:54 -04:00
Joey Hess
6a674c79d7
fix some accidental uses of spaces, rather than tabs, for indentation
2014-10-08 13:14:21 -04:00
Joey Hess
21117d5e21
propellor spin
2014-10-06 19:44:19 -04:00
Joey Hess
e5dd1f6414
propellor spin
2014-09-24 14:03:23 -04:00
Joey Hess
960dd0d1f8
propellor spin
2014-09-24 11:29:08 -04:00
Joey Hess
c96ba00822
propellor spin
2014-09-24 11:27:45 -04:00
Joey Hess
d1292a5786
propellor spin
2014-09-24 11:22:55 -04:00
Joey Hess
3fe6e0f8bd
propellor spin
2014-09-24 11:21:12 -04:00
Joey Hess
ffe36b68b4
propellor spin
2014-09-24 11:18:12 -04:00
Joey Hess
28a966e4b5
propellor spin
2014-09-18 23:54:42 -04:00
Joey Hess
f0409ae869
disable unattended upgrades for autobuilders that mix dpkg and cabal
...
upgrades of dpkg haskell libs can break cabal ones
2014-09-13 14:17:19 -04:00
Joey Hess
acd4638493
propellor spin
2014-09-10 23:01:19 -04:00
Joey Hess
d8367de73a
propellor spin
2014-09-10 22:56:42 -04:00
Joey Hess
599168ddcb
propellor spin
2014-09-08 15:20:53 -04:00
Joey Hess
f2bdab547e
propellor spin
2014-09-08 15:18:42 -04:00
Joey Hess
0126c41a53
propellor spin
2014-09-08 12:46:54 -04:00
Joey Hess
b21feb9e8d
propellor spin
2014-09-08 10:56:08 -04:00
Joey Hess
3cb9a60f89
propellor spin
2014-08-21 15:52:49 -04:00
Joey Hess
08a3c52017
propellor spin
2014-07-23 12:48:46 -04:00
Joey Hess
7d3c09df5f
propellor spin
2014-07-23 11:52:46 -04:00
Joey Hess
78bbd860c6
propellor spin
2014-07-23 10:54:21 -04:00
Joey Hess
321a0bdef6
propellor spin
2014-07-23 10:52:26 -04:00
Joey Hess
660f77c28f
propellor spin
2014-07-22 16:40:11 -04:00
Joey Hess
e01fc46ba3
propellor spin
2014-07-22 16:21:54 -04:00
Joey Hess
400422a7e6
propellor spin
2014-07-22 15:27:44 -04:00
Joey Hess
98a3114763
propellor spin
2014-07-22 15:25:07 -04:00
Joey Hess
7028c2c9cc
propellor spin
2014-07-18 16:45:40 -04:00