@@ -117,7 +117,7 @@ class FileSystemTree(models.Model): |
| 117 | | 117 | |
| 118 | # Create user directories | 118 | # Create user directories |
| 119 | home = DirectoryNode.objects.get(tree=self, path="/home") | 119 | home = DirectoryNode.objects.get(tree=self, path="/home") |
| 120 | - for username in ["sarah", "bob", "charlie"]: | 120 | + for username in ["sarah", "josh", "jules"]: |
| 121 | user_home = DirectoryNode.objects.create( | 121 | user_home = DirectoryNode.objects.create( |
| 122 | tree=self, | 122 | tree=self, |
| 123 | name=username, | 123 | name=username, |
@@ -153,7 +153,7 @@ class FileSystemTree(models.Model): |
| 153 | | 153 | |
| 154 | # Add procedural dirs to certain locations | 154 | # Add procedural dirs to certain locations |
| 155 | base_paths = [ | 155 | base_paths = [ |
| 156 | - "/home/sarah", "/home/bob", "/home/charlie", | 156 | + "/home/sarah", "/home/josh", "/home/jules", |
| 157 | "/opt", "/var", "/usr/local" | 157 | "/opt", "/var", "/usr/local" |
| 158 | ] | 158 | ] |
| 159 | | 159 | |
@@ -201,7 +201,7 @@ class FileSystemTree(models.Model): |
| 201 | tree=self, | 201 | tree=self, |
| 202 | is_fhs_standard=False | 202 | is_fhs_standard=False |
| 203 | ).exclude(path__in=[ | 203 | ).exclude(path__in=[ |
| 204 | - "/home", "/home/sarah", "/home/bob", "/home/charlie" | 204 | + "/home", "/home/sarah", "/home/josh", "/home/jules" |
| 205 | ]) | 205 | ]) |
| 206 | | 206 | |
| 207 | if candidates.exists(): | 207 | if candidates.exists(): |